Searched refs:next (Results 1 - 25 of 2130) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DContent.java32 private Content next; field in class:Content
35 * Returns null if the next token has not decided yet.
38 return next;
49 final void setNext(Document doc,Content next) { argument
50 assert next!=null;
51 assert this.next==null : "next of "+this+" is already set to "+this.next;
52 this.next = next;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DReferenceChain.java44 ReferenceChain next; // Next in chain field in class:ReferenceChain
46 public ReferenceChain(JavaHeapObject obj, ReferenceChain next) { argument
48 this.next = next;
56 return next;
61 ReferenceChain tmp = next;
64 tmp = tmp.next;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDContainerPattern.java70 for( DPattern p=firstChild(); p!=null; p=p.next)
77 DPattern next = head;
79 return next!=null;
82 public DPattern next() {
83 DPattern r = next;
84 next = next.next;
96 child.prev = child.next = null;
100 tail.next
[all...]
/openjdk7/jdk/src/share/classes/sun/util/
H A DResourceBundleEnumeration.java55 String next = null; field in class:ResourceBundleEnumeration
58 if (next == null) {
60 next = iterator.next();
62 while (next == null && enumeration.hasMoreElements()) {
63 next = enumeration.nextElement();
64 if (set.contains(next)) {
65 next = null;
70 return next != null;
75 String result = next;
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLabel.java61 if ((next != null) && (next != this) && (depth == 0)) {
64 switch (next.opc) {
66 lbl = ((Label)next).getDestination();
70 lbl = ((Label)next.value).getDestination();
75 if (next.value instanceof Integer) {
76 Instruction inst = next.next;
78 inst = ((Label)inst).getDestination().next;
82 if (((Integer)next
[all...]
/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/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/jdk/src/share/classes/java/util/
H A DIterator.java55 * (In other words, returns {@code true} if {@link #next} would
63 * Returns the next element in the iteration.
65 * @return the next element in the iteration
68 E next(); method in interface:Iterator
73 * only once per call to {@link #next}. The behavior of an iterator
81 * @throws IllegalStateException if the {@code next} method has not
83 * been called after the last call to the {@code next}
/openjdk7/jdk/test/java/io/charStreams/
H A DABCReader.java33 char next = 'a'; field in class:ABCReader
42 char c = next;
43 if (next == 'z')
44 next = '0';
45 else if (next == '9')
46 next = 'a';
48 next++;
H A DABCOutputStream.java33 char next = ABCInputStream.firstChar(); field in class:ABCOutputStream
42 if (c != next)
44 + "Expected '" + next + "', "
46 next = ABCInputStream.nextChar(next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractFilterPipeImpl.java36 * A filter pipe works on a {@link Packet}, then pass it onto the next pipe.
47 * application (or more precisely the next pipe sees it)
51 * you pass the packet to the next pipe:
55 * return next.process(request);
61 * To intercept an incoming message and prevent the next pipe from seeing it.
65 * then do NOT pass the request onto the next pipe.
71 * return next.proces(request);
80 * then do NOT pass the request onto the next pipe.
84 * reply = next.proces(request);
100 protected final Pipe next; field in class:AbstractFilterPipeImpl
102 AbstractFilterPipeImpl(Pipe next) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DFlattenIterator.java42 private T next; field in class:FlattenIterator
55 return next!=null;
58 public T next() { method in class:FlattenIterator
59 T r = next;
60 next = null;
67 if(next!=null) return;
70 next = child.next();
75 child = parent.next().values().iterator();
/openjdk7/jdk/src/share/classes/java/io/
H A DStringReader.java40 private int next = 0; field in class:StringReader
70 if (next >= length)
72 return str.charAt(next++);
97 if (next >= length)
99 int n = Math.min(length - next, len);
100 str.getChars(next, next + n, cbuf, off);
101 next += n;
125 if (next >= length)
128 long n = Math.min(length - next, n
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DBerDecoder.java65 next = 0 ;
95 final int backup = next ;
103 next = backup ;
138 final int backup = next ;
146 next = backup ;
181 final int backup = next ;
189 next = backup ;
221 final int backup = next ;
229 next = backup ;
258 final int backup = next ;
746 private int next = 0 ; field in class:BerDecoder
[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/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentFragmentImpl.java121 ChildNode kid, next;
123 for (kid = firstChild; kid != null; kid = next) {
124 next = kid.nextSibling;
134 if ( next!=null && next.getNodeType() == Node.TEXT_NODE )
136 ((Text)kid).appendData(next.getNodeValue());
137 removeChild( next );
138 next = kid; // Don't advance; there might be another.
/openjdk7/jdk/src/share/classes/com/sun/pept/ept/
H A DContactInfoListIterator.java62 public ContactInfo next(); method in interface:ContactInfoListIterator
/openjdk7/langtools/test/tools/javac/generics/
H A DT4695847.java34 T4695847<T> next; field in class:T4695847
39 return 1+size(bt.next);
42 return (bt==null) ? 0 : 1+size(bt.next);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dlist.c29 and one to the next node in the list. The head of the list is
83 lp->next = NULL;
92 and the next pointer in the new node is set to NULL.
103 while (lp->next) {
104 lp = lp->next;
106 if ((lp->next = (list_ptr) malloc( sizeof( list_item))) == NULL) {
110 lp->next->ptr.item = item;
111 lp->next->next = NULL;
126 lp->next
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicInteger.java162 int next = current + 1;
163 if (compareAndSet(current, next))
176 int next = current - 1;
177 if (compareAndSet(current, next))
191 int next = current + delta;
192 if (compareAndSet(current, next))
205 int next = current + 1;
206 if (compareAndSet(current, next))
207 return next;
219 int next
[all...]
H A DAtomicLong.java176 long next = current + 1;
177 if (compareAndSet(current, next))
190 long next = current - 1;
191 if (compareAndSet(current, next))
205 long next = current + delta;
206 if (compareAndSet(current, next))
219 long next = current + 1;
220 if (compareAndSet(current, next))
221 return next;
233 long next
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCompressedLineNumberReadStream.java42 int next = readByte() & 0xFF;
44 if (next == 0) return false;
45 if (next == 0xFF) {
51 bci += next >> 3;
52 line += next & 0x7;
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6935022.java57 boolean next = true;
59 while(rows <= endingRow && next) {
62 System.out.println("Rows="+rows+", end="+endingRow+", next="+next);
63 next = next(rows);
66 if (next)
70 private boolean next(int rows) { method in class:Test6935022
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DIterators.java61 private T next; field in class:Iterators.Singleton
63 Singleton(T next) { argument
64 this.next = next;
68 return next!=null;
71 public T next() { method in class:Iterators.Singleton
72 T r = next;
73 next = null;
92 public T next() { method in class:Iterators.Adapter
93 return filter(core.next());
121 public T next() { method in class:Iterators.Map
133 private T next; field in class:Iterators.Filter
154 public T next() { method in class:Iterators.Filter
191 public T next() { method in class:Iterators.Union
211 public T next() { method in class:Iterators.Array
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DMTOMDecorator.java44 private final XmlVisitor next; field in class:MTOMDecorator
67 public MTOMDecorator(UnmarshallerImpl parent,XmlVisitor next, AttachmentUnmarshaller au) { argument
69 this.next = next;
74 next.startDocument(loc,nsContext);
78 next.endDocument();
92 next.text(base64data);
96 next.startElement(tagName);
106 next.endElement(tagName);
110 next
[all...]

Completed in 157 milliseconds

1234567891011>>