Searched defs:next (Results 26 - 50 of 702) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/misc/
H A DCompoundEnumeration.java43 private boolean next() { method in class:CompoundEnumeration
54 return next();
58 if (!next()) {
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DSignatureIterator.java47 public String next() { method in class:SignatureIterator
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DFilteredStepIterator.java46 public int next() { method in class:FilteredStepIterator
48 while ((node = super.next()) != END) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeListCache.java52 /** Pointer to the next object on the list,
54 NodeListCache next; field in class:NodeListCache
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesIteratorImpl.java65 public Object next() { method in class:XMLAttributesIteratorImpl
73 }//next
82 //either the next method has been called yet, or the remove method has already been called
83 //after the last call to the next method.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLDocumentScanner.java64 * that the scanner should only scan the next portion
74 public int next() throws XNIException, IOException; method in interface:XMLDocumentScanner
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisTraverser.java40 * nodeHandle=myTraverser.next(myContext,nodeHandle))
63 return next(context, context);
82 return next(context, context, extendedTypeID);
86 * Traverse to the next node after the current node.
96 * @return the next node in the iteration, or DTM.NULL.
99 public abstract int next(int context, int current); method in class:DTMAxisTraverser
102 * Traverse to the next node after the current node that is matched
114 * @return the next node in the iteration, or DTM.NULL.
117 public abstract int next(int context, int current, int extendedTypeID); method in class:DTMAxisTraverser
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DEventFilterSupport.java50 public Object next(){ method in class:EventFilterSupport
68 //get the next event by calling XMLEventReader
106 //call super.next(), and then peek again.
107 super.next();
/openjdk7/jaxp/src/com/sun/xml/internal/stream/util/
H A DReadOnlyIterator.java57 public Object next() { method in class:ReadOnlyIterator
59 return iterator.next();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DSocketFactoryContactInfoListIteratorImpl.java64 public Object next() method in class:SocketFactoryContactInfoListIteratorImpl
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DProtectionDomainEntry.java56 public ProtectionDomainEntry next() { method in class:ProtectionDomainEntry
/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);
H A DStackFrameStream.java38 for(StackFrameStream fst = new StackFrameStream(thread); !fst.isDone(); fst.next()) {
96 public void next() { method in class:StackFrameStream
/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/share/classes/javax/swing/text/html/parser/
H A DContentModelState.java48 ContentModelState next; field in class:ContentModelState
61 ContentModelState(Object content, ContentModelState next) { argument
62 this(content, next, 0);
69 ContentModelState(Object content, ContentModelState next, long value) { argument
71 this.next = next;
81 if (m.next != null) {
82 m = m.next;
103 return (next == null) || next
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFocusingTextField.java40 TextField next; field in class:FocusingTextField
73 * Call this to set the next field to receive the input focus.
74 * @param next the next TextField in order - can be null.
76 public void setNextField(TextField next) { argument
77 this.next = next;
101 * Pass the focus to the next guy, if any.
104 if (next != null) {
105 next
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageConsumerQueue.java31 ImageConsumerQueue next; field in class:ImageConsumerQueue
44 for (ImageConsumerQueue cq = cqbase; cq != null; cq = cq.next) {
47 cqbase = cq.next;
49 cqprev.next = cq.next;
60 for (ImageConsumerQueue cq = cqbase; cq != null; cq = cq.next) {
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicIterator.java65 * Moves the iterator to the next segment of the path forwards
69 public void next() { method in class:CubicIterator
H A DLineIterator.java65 * Moves the iterator to the next segment of the path forwards
69 public void next() { method in class:LineIterator
H A DPathIterator.java40 * one subpath to the beginning of the next.
164 * Moves the iterator to the next segment of the path forwards
168 public void next(); method in interface:PathIterator
H A DQuadIterator.java65 * Moves the iterator to the next segment of the path forwards
69 public void next() { method in class:QuadIterator
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIterator.java56 * The methods previous() and next() are used for iteration. They return DONE if
67 * for(char c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
89 * c = iter.next()) {
147 public char next(); method in interface:CharacterIterator
/openjdk7/jdk/src/share/classes/java/util/
H A DListIterator.java36 * returned by a call to {@code next()}.
45 * operate on the last element returned by a call to {@link #next} or
66 * returns {@code true} if {@link #next} would return an element rather
75 * Returns the next element in the list and advances the cursor position.
78 * (Note that alternating calls to {@code next} and {@code previous}
81 * @return the next element in the list
82 * @throws NoSuchElementException if the iteration has no next element
84 E next(); method in interface:ListIterator
101 * {@link #next} to go back and forth. (Note that alternating calls
102 * to {@code next} an
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DliveRange.hpp49 LiveRange * next() { return (LiveRange *) end(); } function in class:LiveRange

Completed in 86 milliseconds

1234567891011>>