Searched refs:next (Results 601 - 625 of 2130) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java158 i.next();
220 i.next();
316 obj = i.next();
430 Object tmp = fwd.next();
511 it.next();
564 itr.next();
599 di.next();
600 di.set(si.next());
628 T candidate = i.next();
631 T next
3006 public E next() { throw new NoSuchElementException(); } method in class:Collections.EmptyIterator
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTableFormat.hpp124 verification_type_info* next() { function in class:verification_type_info
185 stack_map_frame* next() const { function in class:stack_map_frame
551 cur = cur->next();
552 types = types->next();
562 types = types->next();
599 vti = vti->next();
601 vti = vti->next();
618 vti = vti->next();
658 cur = cur->next();
659 locals = locals->next();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DREDebugCompiler.java115 * Inserts a node with a given opcode and opdata at insertAt. The node relative next
155 // Get opcode, opdata and next fields of current program node
158 short next = (short)instruction[i + RE.offsetNext];
161 p.print(i + ". " + nodeToString(i) + ", next = ");
163 // If there's no next, say 'none', otherwise give absolute index of next node
164 if (next == 0)
170 p.print(i + next);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/cmdline/getopt/
H A DGetOpt.java120 Option opt = (Option)it.next();
131 * gets the next option found in the commandline. Distinguishes
137 * If the next option found has been declared to take an argument,
141 * @return int - the next option found.
149 theCurrentOption = (Option)theOptionsIterator.next();
198 retval[i++] = (String)it.next();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeIteratorImpl.java127 /** Return the next Node in the Iterator. The node is the next node in
129 * If there is no next node which passes these criteria, then return null.
139 // if root is null there is no next node.
143 boolean accepted = false; // the next node has not been accepted.
153 // else get the next node via depth-first
184 /** Return the previous Node in the Iterator. The node is the next node in
257 /** The method nextNode(Node, boolean) returns the next node
354 Node next = nextNode(deleted, false);
355 if (next!
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerWriteCollect.java134 ByteBufferWithInfo bbwi = (ByteBufferWithInfo)bufs.next();
184 ByteBufferWithInfo bbwi = (ByteBufferWithInfo)bufs.next();
221 public Object next () method in class:BufferManagerWriteCollect.BufferManagerWriteCollectIterator
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DLegacyServerSocketManagerImpl.java117 LegacyServerSocketEndPointInfo endPoint = cast(iterator.next());
132 LegacyServerSocketEndPointInfo endPoint = cast(iterator.next());
149 LegacyServerSocketEndPointInfo ep = cast(endpoints.next());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DGraphImpl.java96 Map.Entry entry = (Map.Entry)iter.next() ;
151 Node child = (Node)iter.next() ;
171 Map.Entry entry = (Map.Entry)iter.next() ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaConnectionCacheBase.java105 if (! ((Connection)connections.next()).isBusy()) {
119 if (((Connection)connections.next()).isBusy()) {
178 Connection c = (Connection) iterator.next();
H A DCorbaContactInfoListIteratorImpl.java106 // wraps sticky or default. Then hasNext and next just call
126 public Object next() method in class:CorbaContactInfoListIteratorImpl
140 primaryToContactInfo.next(primaryContactInfo,
145 effectiveTargetIORIterator.next();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DStreamMonitor.java116 Trigger trigger = (Trigger) iter.next();
135 Trigger trigger = (Trigger) iter.next();
208 Trigger trigger = (Trigger) iter.next();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaThread.java137 MonitorInfo mi = (MonitorInfo) miItr.next();
161 if (obj.equals(loItr.next())) {
179 ownedMonitors.add(heap.newOop((OopHandle)loItr.next()));
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java41 * a) if next() is called before first() or current(), the
43 * b) next() returns null to indicate the end of the list.
45 * or next() has returned null.
58 * if ((elem = next()) != null) {
227 * Fetches the next Element. The strategy
228 * used to locate the next element is
231 * @return the next element or <code>null</code>
234 public Element next() { method in class:ElementIterator
237 and next is invoked, the very first
277 /* We now want to return its next chil
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageDecoder.java41 ImageDecoder next; field in class:ImageDecoder
65 cq = ((cq == null) ? queue : cq.next);
70 cq = cq.next;
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DIIORegistry.java203 Class<IIOServiceProvider> c = (Class)categories.next();
208 // Note that the next() call is required to be inside
210 IIOServiceProvider r = riter.next();
240 Class<IIOServiceProvider> c = (Class)categories.next();
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DFileCacheImageInputStream.java159 long next = streamPos + 1;
160 long pos = readUntil(next);
161 if (pos >= next) {
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.hpp168 uint next(void);
178 elem = next();
181 void operator ++(void) { elem = next(); }
/openjdk7/jdk/make/tools/src/build/tools/buildmetaindex/
H A DBuildMetaIndex.java118 out.println(iter.next());
343 String key = keysIterator.next();
358 indexSet.add(key + "/" + secondPkgElements.next());
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DUtils.java102 public Entry next() throws Exception { method in class:Utils.Parser
103 return next(new Entry());
107 public Entry next(Entry mapping) throws Exception { method in class:Utils.Parser
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DOutNode.java52 TypeNode tn = (TypeNode)it.next();
63 TypeNode tn = (TypeNode)it.next();
80 TypeNode tn = (TypeNode)it.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DInputEntity.java67 private InputEntity next; field in class:InputEntity
118 return next == null;
159 next = stack;
171 next = stack;
184 for (stack = stack.next; stack != null; stack = stack.next) {
194 return next;
231 * returns the next name char, or NUL ... faster than getc(),
232 * and the common "name or nmtoken must be next" case won't
249 * gets the next Jav
766 peek(String next, char chars []) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DReadAllStream.java213 head = head.next;
223 Chunk next; field in class:ReadAllStream.MemoryStream.Chunk
235 return next = new Chunk(buf, off, len);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaWriter.java122 schema((XSSchema)itr.next());
140 attGroupDecl( (XSAttGroupDecl)itr.next() );
144 attributeDecl( (XSAttributeDecl)itr.next() );
148 complexType( (XSComplexType)itr.next() );
152 elementDecl( (XSElementDecl)itr.next() );
156 modelGroupDecl( (XSModelGroupDecl)itr.next() );
160 simpleType( (XSSimpleType)itr.next() );
176 dumpRef( (XSAttGroupDecl)itr.next() );
180 attributeUse( (XSAttributeUse)itr.next() );
313 facet( (XSFacet)itr.next() );
[all...]
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DBasic.java140 i.next();
172 i.next();
178 for (;;) i.next();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DListBuffer.java193 public A next() { method in class:ListBuffer
210 public A next() {
260 return next();

Completed in 119 milliseconds

<<21222324252627282930>>