Searched defs:next (Results 176 - 200 of 702) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DFinalizer.java46 next = null, field in class:Finalizer
50 return (next == this);
56 this.next = unfinalized;
66 if (this.next != null) {
67 unfinalized = this.next;
72 if (this.next != null) {
73 this.next.prev = this.prev;
76 this.prev.next = this.next;
78 this.next
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DStringCharacterIterator.java173 * Implements CharacterIterator.next() for String.
174 * @see CharacterIterator#next
176 public char next() method in class:StringCharacterIterator
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DPartiallyOrderedSet.java177 DigraphNode node = (DigraphNode)iter.next();
192 public Object next() { method in class:PartialOrderIterator
198 DigraphNode node = (DigraphNode)outNodes.next();
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.hpp64 NonPermObject* &next() { return _next; } function in struct:ciObjectFactory::NonPermObject
/openjdk7/hotspot/src/share/vm/code/
H A Djvmticmlr.h38 * the kind of information being passed, and a pointer to the next
79 struct _jvmtiCompiledMethodLoadRecordHeader* next; member in struct:_jvmtiCompiledMethodLoadRecordHeader
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DfreeChunk.hpp111 FreeChunk* next() const { return _next; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.cpp35 ConcurrentG1RefineThread(ConcurrentG1Refine* cg1r, ConcurrentG1RefineThread *next, argument
41 _next(next),
203 // Check if we need to activate the next thread.
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNBindingEnumeration.java97 * Returns the next binding in the list.
101 public java.lang.Object next() throws NamingException { method in class:CNBindingEnumeration
142 * Returns the next binding in the list.
149 return next();
184 * Get the next batch using _bindingIter. Update the 'more' field.
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DLazySearchEnumerationImpl.java116 public Object next() throws NamingException { method in class:LazySearchEnumerationImpl
136 // need to find next match
137 Binding next;
141 next = (Binding)candidates.next();
142 obj = next.getObject();
154 new CompositeName(next.getName()) : null);
166 answer = new SearchResult(next.getName(),
167 next.getClassName(), obj,
/openjdk7/jdk/src/share/classes/com/sun/naming/internal/
H A DVersionHelper12.java207 * Returns the next InputStream, or null if there are no more.
239 public Object next() { method in class:VersionHelper12.InputStreamEnumeration
250 return next();
/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/org/apache/xml/internal/security/keys/storage/implementations/
H A DCertsInFilesystemDirectoryResolver.java183 public Object next() { method in class:CertsInFilesystemDirectoryResolver.FilesystemIterator
210 X509Certificate cert = (X509Certificate) i.next();
H A DKeyStoreResolver.java100 public Object next() { method in class:KeyStoreResolver.KeyStoreIterator
139 X509Certificate cert = (X509Certificate) i.next();
/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DBindingsEntrySet.java82 public BindingsEntry next() { method in class:BindingsEntrySet.BindingsIterator
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfFile.hpp125 ElfFile* next() const { return m_next; } function in class:ElfFile
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java62 // returned in the next call to
154 private boolean next() { method in class:Test7047069
174 // the former curve and one of them is in the next
176 // curves level values to the next higher level.
197 while (st.next()) {}
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCCustomizations.java53 /*package*/ CCustomizations next; field in class:CCustomizations
71 // for( CCustomizations c = model.customizations; c!=null; c=c.next )
74 this.next = model.customizations;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DSubtreeCutter.java60 private ContentHandler next; field in class:SubtreeCutter
84 next = handler;
103 super.setContentHandler(next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DMTOMXmlOutput.java47 private final XmlOutput next; field in class:MTOMXmlOutput
55 public MTOMXmlOutput(XmlOutput next) { argument
56 this.next = next;
61 next.startDocument(serializer, fragment, nsUriIndex2prefixIndex, nsContext);
65 next.endDocument(fragment);
70 next.beginStartTag(name);
76 next.beginStartTag(prefix, localName);
82 next.attribute(name, value);
86 next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DSimpleHashtable.java147 * Used to view this as an enumeration; returns the next key
156 current = current.next;
168 for (Entry e = tab[index]; e != null; e = e.next) {
183 for (Entry e = tab[index]; e != null; e = e.next) {
217 old = old.next;
220 e.next = newMap[index];
244 for (Entry e = tab[index]; e != null; e = e.next) {
276 Entry next; field in class:SimpleHashtable.Entry
278 protected Entry(int hash, Object key, Object value, Entry next) { argument
282 this.next
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventReader.java60 _streamReader.next();
82 //advance and read the next
83 _streamReader.next();
156 public Object next() { method in class:StAXEventReader
H A DStAXFilteredEvent.java59 public Object next() { method in class:StAXFilteredEvent
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DNamespaceContextIterator.java42 Attr next = null; field in class:NamespaceContextIterator
71 while (next == null && context != null) {
78 next = (Attr) currentAttribute;
94 return next != null;
97 public Object next() { method in class:NamespaceContextIterator
107 if (next == null) {
110 last = next;
111 next = null;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DToken.java85 * A reference to the next regular (non-special) token from the input
92 public Token next; field in class:Token
99 * to the last of these special tokens, which in turn refers to the next
102 * The next fields of special tokens refer to other special tokens that
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DW3CWsaClientTube.java39 public W3CWsaClientTube(WSDLPort wsdlPort, WSBinding binding, Tube next) { argument
40 super(wsdlPort, binding, next);

Completed in 64 milliseconds

1234567891011>>