Searched defs:next (Results 151 - 175 of 702) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNthIterator.java64 public int next() { method in class:NthIterator
78 while ((node = _source.next()) != DTMAxisIterator.END) {
H A DStepIterator.java99 _iterator.setStartNode(_includeSelf ? _startNode : _source.next());
108 _iterator.setStartNode(_includeSelf ? _startNode : _source.next());
112 public int next() { method in class:StepIterator
115 if ((node = _iterator.next()) != END) {
118 // If not, get the next starting point from left-hand iterator...
119 else if ((node = _source.next()) == END) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11NSDocumentScannerImpl.java596 * <strong>Note:</strong> This method assumes that the next
775 // Take advantage of the fact that next string _should_ be "fElementQName.rawName",
841 /** return the next state on the input
846 public int next() throws IOException, XNIException { method in class:XML11NSDocumentScannerImpl
848 //we pop the context only when next() has been called after the end element state was encountered. - nb.
855 return fScannerLastState = super.next();
H A DXMLNSDocumentScannerImpl.java102 /** return the next state on the input
107 public int next() throws IOException, XNIException { method in class:XMLNSDocumentScannerImpl
109 //we pop the context only when next() has been called after the end element state was encountered. - nb.
116 return fScannerLastState = super.next();
126 * @param next The documentHandler after the DTDValidator
192 //get the next element from the stack
395 * <strong>Note:</strong> This method assumes that the next
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSymbolHash.java132 for (Entry entry = fBuckets[i]; entry != null; entry = entry.next) {
146 for (Entry entry = fBuckets[i]; entry != null; entry = entry.next) {
181 for (Entry entry = fBuckets[bucket]; entry != null; entry = entry.next) {
200 /** The next entry. */
201 public Entry next; field in class:SymbolHash.Entry
206 next = null;
209 public Entry(Object key, Object value, Entry next) { argument
212 this.next = next;
219 if (next !
[all...]
H A DSymbolTable.java100 OUTER: for (Entry entry = fBuckets[bucket]; entry != null; entry = entry.next) {
142 OUTER: for (Entry entry = fBuckets[bucket]; entry != null; entry = entry.next) {
213 OUTER: for (Entry entry = fBuckets[bucket]; entry != null; entry = entry.next) {
249 OUTER: for (Entry entry = fBuckets[bucket]; entry != null; entry = entry.next) {
289 /** The next entry. */
290 public Entry next; field in class:SymbolTable.Entry
297 * Constructs a new entry from the specified symbol and next entry
300 public Entry(String symbol, Entry next) { argument
304 this.next = next;
311 Entry(char[] ch, int offset, int length, Entry next) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisIterator.java35 * Get the next node in the iteration.
37 * @return The next node handle in the iteration, or END.
39 public int next(); method in interface:DTMAxisIterator
62 * Remembers the current node for the next call to gotoMark().
73 * i.e. subsequent call to next() should return END.
83 * i.e. subsequent call to next() should return END.
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DEmptyIterator.java41 public final int next(){ return END; } method in class:EmptyIterator
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEventReaderImpl.java64 boolean next = false ;
66 next = fXMLReader.hasNext();
70 return next ;
82 //advance the reader to next state.
83 fXMLReader.next();
113 "parser must be on START_ELEMENT to read next text", fLastEvent.getLocation());
150 //get the next event -- we should stop at END_ELEMENT but it can be any thing
215 //if peeked event is whitespace move to the next event
216 //if peeked event is PI or COMMENT move to the next event
240 //if there is no peeked event -- delegate the work of getting next even
245 public Object next() { method in class:XMLEventReaderImpl
[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/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJNIHandleBlock.java63 public JNIHandleBlock next() { method in class:JNIHandleBlock
69 /* the next handle block is valid only if the current block is full */
90 JNIHandleBlock n = next();
113 cur = cur.next();
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DSetOfIntegerSyntax.java449 * <CODE>next()</CODE> method to iterate through the integer values in a
454 * while ((i = attribute.next (i)) != -1)
466 public int next(int x) { method in class:SetOfIntegerSyntax
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterStateReasons.java257 iter.next();
284 myEntry = (Map.Entry) myIterator.next();
295 public Object next() { method in class:PrinterStateReasons.PrinterStateReasonSetIterator
/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...]
H A DWhitespaceBasedBreakIterator.java55 for (char c = ci.first(); c != CharacterIterator.DONE; c = ci.next()) {
86 public int next() { method in class:WhitespaceBasedBreakIterator
94 public int next(int n) { method in class:WhitespaceBasedBreakIterator
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DAttributeList.java54 public AttributeList next; field in class:AttributeList
69 public AttributeList(String name, int type, int modifier, String value, Vector<?> values, AttributeList next) { argument
75 this.next = next;
116 * @return the next attribute in the list
119 return next;
H A DTagStack.java51 TagStack next; field in class:TagStack
60 TagStack(TagElement tag, TagStack next) { argument
63 this.next = next;
70 if (next != null) {
71 inclusions = next.inclusions;
72 exclusions = next.exclusions;
73 pre = next.pre;
98 * Return the element that must come next in the
107 * what comes next i
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSubTreeData.java92 public Object next() { method in class:DOMSubTreeData.DelayedNodeIterator
98 return (Node) li.next();
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurveLink.java34 CurveLink next; field in class:CurveLink
108 this.next = link;
112 return next;
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageWatched.java65 * synchronized block so Link.next modifications
79 * block so Link.next modifications are not safe.
94 private Link next; field in class:ImageWatched.WeakLink
96 public WeakLink(ImageObserver obs, Link next) { argument
98 this.next = next;
102 return (myref.get() == iw || next.isWatcher(iw));
109 return next.removeWatcher(iw);
115 return next;
118 // and update my next lin
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java106 * to let it do this. it can determine based on whatever. so having a special 'next'
115 public boolean next(int script, int lim) { method in class:FontRunIterator
129 public boolean next() { method in class:FontRunIterator
130 return next(Script.COMMON, limit);
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArcIterator.java103 * Moves the iterator to the next segment of the path forwards
107 public void next() { method in class:ArcIterator
H A DEllipseIterator.java71 * Moves the iterator to the next segment of the path forwards
75 public void next() { method in class:EllipseIterator
H A DRoundRectIterator.java74 * Moves the iterator to the next segment of the path forwards
78 public void next() { method in class:RoundRectIterator
/openjdk7/jdk/src/share/classes/java/beans/
H A DWeakIdentityMap.java48 private int threshold = 6; // the next size value at which to resize
58 for (Entry<T> entry = this.table[index]; entry != null; entry = entry.next) {
73 for (Entry<T> entry = this.table[index]; entry != null; entry = entry.next) {
114 Entry<T> next = current.next;
117 this.table[index] = next;
120 prev.next = next;
123 entry.next = null; // Help GC
128 current = next;
168 private Entry<T> next; field in class:WeakIdentityMap.Entry
170 Entry(Object key, int hash, T value, ReferenceQueue<Object> queue, Entry<T> next) argument
[all...]

Completed in 76 milliseconds

1234567891011>>