Searched refs:next (Results 201 - 225 of 2130) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DIdentifiableContainerBase.java65 Identifiable ide = (Identifiable)(iter.next()) ;
78 public Object next()
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLException.java48 * <LI> a chain to a next Exception. This can be used to provide additional
272 * @return the next <code>SQLException</code> object in the chain;
277 return (next);
291 SQLException next=current.next;
292 if (next != null) {
293 current = next;
300 current=current.next;
328 public Throwable next() {
369 private volatile SQLException next; field in class:SQLException
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContainmentFilter.java64 Attribute target = (Attribute) m.next();
73 if (!fromSuper.contains(vals.next())) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java230 for (Entry e = tab[index]; e != null; e = e.next)
234 for (Entry e = tab[0]; e != null; e = e.next)
267 for (Entry e = tab[index]; e != null; e = e.next)
271 for (Entry e = tab[0]; e != null; e = e.next)
298 e.next = newMap[index];
366 for (Entry e = tab[index] ; e != null ; e = e.next) {
374 for (Entry e = tab[0] ; e != null ; e = e.next) {
465 prev = e, e = e.next) {
469 prev.next = e.next;
741 Entry next; field in class:LinkedHashMap.Entry
747 Entry(int hash, Object key, Object value, Entry next) argument
815 public Object next() { method in class:LinkedHashMap.HashIterator
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DRootNode.java46 ((Node)it.next()).documentIndex(writer);
49 ((Node)it.next()).document(writer);
/openjdk7/hotspot/src/share/vm/services/
H A DgcNotifier.hpp35 GCNotificationRequest *next; member in class:GCNotificationRequest
43 next = NULL;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DJavadocEscapeWriter.java54 public JavadocEscapeWriter( Writer next ) {
55 super(next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DExtensibilityHelper.java62 action.perform((Entity) iter.next());
70 ((ExtensionImpl) iter.next()).accept(visitor);
/openjdk7/jdk/test/java/io/BufferedReader/
H A DFill.java45 char next = 0; field in class:Fill.Source
54 cbuf[i] = next++;
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DManyFiles.java57 FileOutputStream fos = (FileOutputStream)i.next();
63 File f = (File)i.next();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DPackageTreeWriter.java55 * The next package name in the alpha-order list.
57 protected PackageDoc next; field in class:PackageTreeWriter
67 PackageDoc prev, PackageDoc next)
76 this.next = next;
85 * @param next Next package in the alpha-ordered list.
92 PackageDoc next, boolean noDeprecated) {
98 prev, next);
180 * Get link for the next package tree file.
185 if (next
64 PackageTreeWriter(ConfigurationImpl configuration, String path, String filename, PackageDoc packagedoc, PackageDoc prev, PackageDoc next) argument
90 generate(ConfigurationImpl configuration, PackageDoc pkg, PackageDoc prev, PackageDoc next, boolean noDeprecated) argument
[all...]
/openjdk7/jdk/test/java/util/AbstractList/
H A DFailFastIterator.java42 i.next();
54 i.next();
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/dns/
H A DCanonicalName.java54 Attribute attr = (Attribute)ne.next();
56 System.out.println(args[0] + " -> " + e.next());
/openjdk7/jdk/src/share/back/
H A DcommonRef.c240 gdata->objectsByID[slot] = node->next;
242 prev->next = node->next;
249 node = node->next;
278 prev->next = node->next;
279 node->next = gdata->objectsByID[slot];
284 node = node->next;
309 node->next = gdata->objectsByID[slot];
347 RefNode *next; local
383 RefNode *next; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DNodeIterator.java36 * Callers should not call next() after it returns END.
38 public int next(); method in interface:NodeIterator
56 * Remembers the current node for the next call to gotoMark().
67 * i.e. subsequent call to next() should return END.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DTextImpl.java343 //If the logically-adjacent next node can be removed
359 Node next = currentNode.getNextSibling();
360 while (next != null) {
361 //If the logically-adjacent next node can be removed
365 if ((next.getNodeType() == Node.TEXT_NODE)
366 || (next.getNodeType() == Node.CDATA_SECTION_NODE)
367 || (next.getNodeType() == Node.ENTITY_REFERENCE_NODE && hasTextOnlyChildren(next))) {
368 parent.removeChild(next);
369 next
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DIIOPPrimaryToContactInfo.java78 public ContactInfo next(ContactInfo primary, method in interface:IIOPPrimaryToContactInfo
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReference.java65 * The state is encoded in the queue and next fields as follows:
68 * ReferenceQueue.NULL if it was not registered with a queue; next =
72 * next = Following instance in queue, or this if at end of list.
74 * Enqueued: queue = ReferenceQueue.ENQUEUED; next = Following instance
77 * Inactive: queue = ReferenceQueue.NULL; next = this.
79 * With this scheme the collector need only examine the next field in order
81 * the next field is null then the instance is active; if it is non-null,
94 Reference next; field in class:Reference
128 Reference rn = r.next;
130 r.next
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DliveRange.hpp49 LiveRange * next() { return (LiveRange *) end(); } function in class:LiveRange
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.cpp89 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
92 Chunk* nextFC = fc->next();
94 // The chunk fc being removed has a "next". Set the "next" to the
104 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
117 while (tl->next() != NULL && n > 0) {
118 tl = tl->next(); n--; k++;
123 Chunk* new_head = tl->next();
147 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
150 Chunk* nextFC = fc->next();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParseException.java142 Token tok = currentToken.next;
150 tok = tok.next;
152 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + eol;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/
H A DStorageResolver.java152 * Method next
154 * @return the next element
156 public X509Certificate next() { method in class:StorageResolver
157 return (X509Certificate) this._iterator.next();
186 public Object next() { method in class:StorageResolver.StorageResolverIterator
187 return _resolvers.next();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DParseException.java153 Token tok = currentToken.next;
163 tok = tok.next;
165 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + eol;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DEmptyIterator.java45 public Object next() throws NoSuchElementException { method in class:EmptyIterator
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DAttribute.java38 Attribute next; field in class:Attribute

Completed in 762 milliseconds

1234567891011>>