Searched refs:next (Results 226 - 250 of 2130) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DNamespaceDecl.java59 NamespaceDecl next; field in class:NamespaceDecl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAttribute.java81 * The next attribute in this attribute list. May be <tt>null</tt>.
83 Attribute next; field in class:Attribute
206 attr = attr.next;
243 attr = attr.next;
281 attr = attr.next;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DParseException.java143 Token tok = currentToken.next;
151 tok = tok.next;
153 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java70 T value = result.next();
95 public T next() {
123 archive.add(result.next());
131 archive.add(result.next());
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DValidateClass.java102 Validator next = null; field in class:Validator
106 next = n;
112 pw.writeObject(next);
119 next = (Validator)pr.readObject();
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DAvailableCharsetNames.java41 String charsetName = (String) charsetIterator.next();
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/scripts/
H A Dsysprops.js84 var key = keys.next();
/openjdk7/jdk/src/share/classes/sun/text/
H A DComposedCharIter.java34 * {@link #next} returns this value when there are no more composed characters
60 * Returns the next precomposed Unicode character.
61 * Repeated calls to <tt>next</tt> return all of the precomposed characters defined
64 * to <tt>next</tt> will return {@link #DONE}.
66 public int next() { method in class:ComposedCharIter
76 * recently returned by {@link #next}. The resulting decomposition is
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DModifier.java59 public Object next(); method in interface:Modifier.Iterator
/openjdk7/jdk/test/java/security/cert/PolicyNode/
H A DGetPolicyQualifiers.java62 PolicyNode child = (PolicyNode) children.next();
66 Object next = i.next();
67 if (!(next instanceof PolicyQualifierInfo))
/openjdk7/jdk/test/java/util/HashMap/
H A DSetValue.java41 Map.Entry e = (Map.Entry) m.entrySet().iterator().next();
/openjdk7/jdk/test/java/util/IdentityHashMap/
H A DToString.java41 i.next();
/openjdk7/jdk/test/java/util/LinkedHashMap/
H A DCache.java45 int eldest = ((Integer) m.keySet().iterator().next()).intValue();
/openjdk7/jdk/test/java/util/LinkedList/
H A DComodifiedRemove.java43 e.next();
H A DRemove.java42 e.next();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSynchronousQueue.java135 * except that nodes that appear to be the next ones to become
231 volatile SNode next; // next node in stack field in class:SynchronousQueue.TransferStack.SNode
245 return cmp == next &&
293 (k.getDeclaredField("next"));
315 static SNode snode(SNode s, Object e, SNode next, int mode) { argument
318 s.next = next;
355 casHead(h, h.next); // pop cancelled node
364 if ((h = head) != null && h.next
538 volatile QNode next; // next node in queue field in class:SynchronousQueue.TransferQueue.QNode
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java35 * Scopes can be nested; the next field of a scope points
36 * to its next outer scope. Nested scopes can share their hash tables.
51 public Scope next; field in class:Scope
92 /** Construct a new scope, within scope next, with given owner, using
95 private Scope(Scope next, Symbol owner, Entry[] table) { argument
96 this.next = next;
104 private Scope(Scope next, Symbol owner, Entry[] table, int nelems) { argument
105 this(next, owner, table);
109 /** Construct a new scope, within scope next, wit
487 public Entry next() { method in class:Scope.Entry
491 public Entry next(Filter<Symbol> sf) { method in class:Scope.Entry
688 public Symbol next() { method in class:Scope.CompoundScope.CompoundScopeIterator
733 ErrorScope(Scope next, Symbol errSymbol, Entry[] table) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMatchingIterator.java35 * It is an iterator even though next() will never be called. It is used to
95 while ((node = _source.next()) != END && node != _match) {
107 public int next() { method in class:MatchingIterator
108 return _source.next();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtable.java52 IdentityHashtableEntry next; field in class:IdentityHashtableEntry
184 for (IdentityHashtableEntry e = tab[i] ; e != null ; e = e.next) {
206 for (IdentityHashtableEntry e = tab[index] ; e != null ; e = e.next) {
228 for (IdentityHashtableEntry e = tab[index] ; e != null ; e = e.next) {
259 old = old.next;
262 e.next = newTable[index];
295 for (IdentityHashtableEntry e = tab[index] ; e != null ; e = e.next) {
314 e.next = tab[index];
333 for (IdentityHashtableEntry e = tab[index], prev = null ; e != null ; prev = e, e = e.next) {
336 prev.next
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJNIid.java35 private static AddressField next; field in class:JNIid
60 next = type.getAddressField("_next");
72 public JNIid next() { method in class:JNIid
73 Address nextAddr = next.getValue(addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBasicHashtableEntry.java68 public BasicHashtableEntry next() { method in class:BasicHashtableEntry
70 Address next = (nextValue != null)? nextValue.andWithMask(-2L) : null;
73 // caller has to use this next and cast the result to correct type.
74 return (BasicHashtableEntry) VMObjectFactory.newObject(this.getClass(), next);
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/event/
H A DGestureHandler.java144 final PerComponentNotifier next = getNextNotifierForComponent(component.getParent());
145 if (next != null) next.recursivelyHandlePhaseChange(phase, e);
154 final PerComponentNotifier next = getNextNotifierForComponent(component.getParent());
155 if (next != null) next.recursivelyHandleRotate(e);
164 final PerComponentNotifier next = getNextNotifierForComponent(component.getParent());
165 if (next != null) next.recursivelyHandleMagnify(e);
177 final PerComponentNotifier next
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp51 _recorder_list = _recorder_list->next();
67 for (; tmp->next() != NULL; tmp = tmp->next());
/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/ws/encoding/
H A DContentType.java63 tk = h.next();
69 tk = h.next();
74 tk = h.next();

Completed in 119 milliseconds

1234567891011>>