Searched refs:next (Results 251 - 275 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/java/io/BufferedInputStream/
H A DFill.java45 byte next = 0; field in class:Fill.Source
52 return next++;
58 buf[i] = next++;
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DCircularList.java53 if (cv != cv.next) {
55 "Circular List Test failed, next != self");
71 public CircularListTest next = null; field in class:CircularListTest
76 list.next = list;
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DParameterDecl.java66 p1 = getMethod("m1").getParameters().iterator().next();
126 getMethod("m1").getParameters().iterator().next();
134 getMethod("m2").getParameters().iterator().next();
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipDirectoryStream.java89 private Path next;
98 public synchronized Path next() {
101 return itr.next();
H A DZipUtils.java175 private static char next(String glob, int i) { method in class:ZipUtils
201 char next = globPattern.charAt(i++);
202 if (isGlobMeta(next) || isRegexMeta(next)) {
205 regex.append(next);
213 if (next(globPattern, i) == '^') {
219 if (next(globPattern, i) == '!') {
224 if (next(globPattern, i) == '-') {
242 c == '&' && next(globPattern, i) == '&') {
253 if ((c = next(globPatter
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java85 * @see UCharacterIterator#next()
87 public int next() { method in class:CharacterIteratorWrapper
89 iterator.next();
125 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
H A DUCharacterIterator.java139 * Returns the UTF16 code unit at index, and increments to the next
143 * @return the next UTF16 code unit, or DONE if the index is at the limit
147 public abstract int next(); method in class:UCharacterIterator
150 * Returns the code point at index, and increments to the next code
153 * <code>next()</code>. Otherwise the iterator is incremented past
156 * @return the next codepoint in text, or DONE if the index is at
161 int ch1 = next();
163 int ch2 = next();
/openjdk7/jdk/test/java/util/ServiceLoader/
H A DLoad.java58 fp = sli.next();
60 if (ei.next().equals("fail")) {
66 String ec = ei.next();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java38 CacheEntry next; field in class:CacheEntry
191 for (CacheEntry e = tab[index]; e != null; e = e.next) {
220 old = old.next;
223 e.next = newTable[index];
252 for (CacheEntry e = tab[index]; e != null; e = e.next) {
269 ne.next = tab[index];
289 for (CacheEntry e = tab[index], prev = null; e != null; prev = e, e = e.next) {
292 prev.next = e.next;
294 tab[index] = e.next;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DDOM2TO.java134 Node next = node.getFirstChild();
135 while (next != null) {
136 parse(next);
137 next = next.getNextSibling();
143 next = node.getFirstChild();
144 while (next != null) {
145 parse(next);
146 next = next
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractMap.java112 Entry<K,V> e = i.next();
118 Entry<K,V> e = i.next();
143 Entry<K,V> e = i.next();
149 Entry<K,V> e = i.next();
174 Entry<K,V> e = i.next();
180 Entry<K,V> e = i.next();
232 Entry<K,V> e = i.next();
238 Entry<K,V> e = i.next();
328 public K next() {
329 return i.next()
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java180 long next = current + 1;
181 if (compareAndSet(obj, current, next))
196 long next = current - 1;
197 if (compareAndSet(obj, current, next))
213 long next = current + delta;
214 if (compareAndSet(obj, current, next))
229 long next = current + 1;
230 if (compareAndSet(obj, current, next))
231 return next;
245 long next
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingDeque.java93 * self-link implicitly means to jump to "first" (for next links)
127 Node<E> next; field in class:LinkedBlockingDeque.Node
144 * (last.next == null && last.item != null)
219 node.next = f;
243 l.next = node;
257 Node<E> n = f.next;
260 f.next = f; // help GC
287 p.next = null;
299 Node<E> n = x.next;
305 p.next
1046 Node<E> next; field in class:LinkedBlockingDeque.AbstractItr
1116 public E next() { method in class:LinkedBlockingDeque.AbstractItr
[all...]
H A DConcurrentLinkedQueue.java121 * - There is exactly one (last) Node with a null next reference,
180 volatile Node<E> next; field in class:ConcurrentLinkedQueue.Node
215 (k.getDeclaredField("next"));
228 * - (tmp = head).next != tmp || tmp != head
238 * node with node.next == null) can be reached in O(1) time.
246 * - tail.next may or may not be self-pointing to tail.
309 * Returns the successor of p, or the head node if p.next has been
314 Node<E> next = p.next;
315 return (p == next)
735 public E next() { method in class:ConcurrentLinkedQueue.Itr
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionHandle.java73 * doubly-linked list. From the outside only the next and the
84 InstructionHandle next, prev; // Will be set from the outside field in class:InstructionHandle
90 public final InstructionHandle getNext() { return next; }
135 ih_list = ih.next;
172 next = ih_list;
180 next = prev = null;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDupFilterIterator.java35 * array is later sorted and duplicates are ignored in next().
61 * Last value returned by next().
102 while ((node = _source.next()) != END) {
120 public int next() { method in class:DupFilterIterator
122 final int next = _nodes.at(_current++);
123 if (next != _lastNext) {
124 return returnNode(_lastNext = next);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DAttributeList.java54 public AttributeList next; field in class:AttributeList
69 public AttributeList(String name, int type, int modifier, String value, Vector<?> values, AttributeList next) { argument
75 this.next = next;
116 * @return the next attribute in the list
119 return next;
/openjdk7/jdk/src/share/classes/java/awt/
H A DSequencedEvent.java205 SequencedEvent next = null;
214 next = (SequencedEvent)list.getFirst();
221 if (next != null && next.appContext != null) {
222 SunToolkit.postEvent(next.appContext, new SentEvent());
/openjdk7/hotspot/test/compiler/6689060/
H A DTest.java36 Point next; field in class:Point
42 return next;
158 p2.next = p1;
171 p2.next = p1;
185 p2.next = p1;
199 p1.next = p2;
281 p1.next = p2;
297 p1.next = p2;
357 p1.next = p2;
360 p1.next
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMethodSet.java167 candidate = (MemberDefinition) matches.next();
210 listIter = ((List) hashIter.next())
227 public Object next() {
228 return listIter.next();
269 buf.append(all.next().toString());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStAXEventConnector.java161 // check the next event
162 XMLEvent next;
164 next = staxEventReader.peek();
165 if(!isIgnorable(next))
170 if(isTag(next)) {
182 next = staxEventReader.peek();
183 if(!isIgnorable(next))
188 if(isTag(next)) {
195 buffer.append(next.asCharacters().getData());
223 String prefix = fixNull(i.next()
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DDocument.java113 Content next = current.getNext();
114 if(next==null || !next.isReadyToCommit())
116 next.accept(visitor);
117 next.written();
118 current = next;
211 for( NamespaceDecl ns=namespaces; ns!=null; ns=ns.next ) {
227 for( NamespaceDecl ns=namespaces; ns!=null; ns=ns.next ) {
251 for( NamespaceDecl ns=namespaces; ns!=null; ns=ns.next ) {
257 for( Attribute a=attributes; a!=null; a=a.next) {
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java157 private FileStore next; field in class:WindowsFileSystem.FileStoreIterator
168 WindowsPath root = (WindowsPath)roots.next();
187 if (next != null)
189 next = readNext();
190 return next != null;
194 public synchronized FileStore next() { method in class:WindowsFileSystem.FileStoreIterator
195 if (next == null)
196 next = readNext();
197 if (next == null) {
200 FileStore result = next;
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java186 private FileStore next; field in class:UnixFileSystem.FileStoreIterator
197 UnixMountEntry entry = entries.next();
222 if (next != null)
224 next = readNext();
225 return next != null;
229 public synchronized FileStore next() { method in class:UnixFileSystem.FileStoreIterator
230 if (next == null)
231 next = readNext();
232 if (next == null) {
235 FileStore result = next;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DInterfaceTypeImpl.java64 ReferenceType refType = (ReferenceType)iter.next();
85 ReferenceType refType = (ReferenceType)iter.next();
107 InterfaceTypeImpl interfaze = (InterfaceTypeImpl)iter.next();
123 InterfaceType interfaze = (InterfaceType)iter.next();
152 InterfaceType interfaze = (InterfaceType)iter.next();
168 InterfaceTypeImpl interfaze = (InterfaceTypeImpl)iter.next();
183 InterfaceTypeImpl interfaze = (InterfaceTypeImpl)iter.next();

Completed in 143 milliseconds

<<11121314151617181920>>