Searched refs:next (Results 276 - 300 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DExtendedModelVisitor.java55 Block block = (Block) iter4.next();
61 Block block = (Block) iter4.next();
67 Parameter parameter = (Parameter) iter4.next();
79 Block block = (Block) iter4.next();
85 Block block = (Block) iter4.next();
91 Parameter parameter = (Parameter) iter4.next();
100 Fault fault = (Fault) iter4.next();
/openjdk7/jdk/src/share/classes/sun/text/
H A DCodePointIterator.java46 public abstract int next(); method in class:CodePointIterator
97 public int next() { method in class:CharArrayCodePointIterator
148 public int next() { method in class:CharSequenceCodePointIterator
199 public int next() { method in class:CharacterIteratorCodePointIterator
202 char cp2 = iter.next();
205 iter.next();
222 iter.next();
/openjdk7/jdk/src/share/classes/sun/net/
H A DProgressMonitor.java72 ProgressSource pi = iter.next();
122 listeners.add(iter.next());
128 ProgressListener pl = iter.next();
159 listeners.add(iter.next());
165 ProgressListener pl = iter.next();
191 listeners.add(iter.next());
197 ProgressListener pl = iter.next();
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c123 lib_info *next = lib->next; local
128 lib = next;
135 thread_info *next = thr->next; local
137 thr = next;
197 ph->lib_tail->next = newlib;
223 lib = lib->next;
240 lib = lib->next;
258 newthr->next
[all...]
H A Dlibproc_impl.h43 struct lib_info* next; member in struct:lib_info
51 struct thread_info* next; member in struct:thread_info
60 struct map_info* next; member in struct:map_info
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c124 lib_info *next = lib->next; local
129 lib = next;
136 thread_info *next = thr->next; local
138 thr = next;
195 ph->lib_tail->next = newlib;
221 lib = lib->next;
238 lib = lib->next;
256 newthr->next
[all...]
H A Dlibproc_impl.h43 struct lib_info* next; member in struct:lib_info
51 struct thread_info* next; member in struct:thread_info
60 struct map_info* next; member in struct:map_info
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedTransferQueue.java155 * first unmatched node on match and CASing the next field of the
206 * pointer updates: Threads may sometimes shortcut the "next" link
212 * of costly-to-reclaim garbage caused by the sequential "next"
220 * pointer, we set the "next" link of the previous head to point
224 * adds some further complexity to traversal: If any "next"
353 * to be removed, we can unsplice s by CASing the next field of
358 * (i.e., with null next), then it is pinned as the target node
451 volatile Node next; field in class:LinkedTransferQueue.Node
549 (k.getDeclaredField("next"));
620 Node n = q.next; // updat
896 public final E next() { method in class:LinkedTransferQueue.Itr
[all...]
H A DConcurrentLinkedDeque.java115 * ("prev") and successor ("next") nodes:
117 * class Node<E> { volatile Node<E> prev, next; volatile E item; }
126 * "last" node terminating any chain of next references starting at
131 * next reference in the first or last node to a fresh node
138 * A "self-link" is a next or prev reference that is the same node:
139 * p.prev == p or p.next == p
146 * (p.prev == null && p.next != p) ||
147 * (p.next == null && p.prev != p)
170 * any time, the set of live nodes maintained by prev and next
171 * links are identical, that is, the live nodes found via next
295 volatile Node<E> next; field in class:ConcurrentLinkedDeque.Node
533 unlinkFirst(Node<E> first, Node<E> next) argument
1362 public E next() { method in class:ConcurrentLinkedDeque.AbstractItr
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DDescendantIterator.java164 * Returns the next node in the set and advances the position of the
168 * @return The next <code>Node</code> in the set being iterated over, or
185 int next;
211 next = m_lastFetched = (DTM.NULL == m_lastFetched)
213 : m_traverser.next(m_context, m_lastFetched);
217 next = m_lastFetched = (DTM.NULL == m_lastFetched)
219 : m_traverser.next(m_context, m_lastFetched,
223 if (DTM.NULL != next)
225 if(DTMIterator.FILTER_ACCEPT == acceptNode(next))
233 while (next !
[all...]
H A DMatchPatternIterator.java187 * Get the next node via getNextXXX. Bottlenecked for derived class override.
188 * @return The next node on the axis, or DTM.NULL.
194 : m_traverser.next(m_context, m_lastFetched);
199 * Returns the next node in the set and advances the position of the
202 * @return The next <code>Node</code> in the set being iterated over, or
210 int next;
237 next = getNextNode();
239 if (DTM.NULL != next)
241 if(DTMIterator.FILTER_ACCEPT == acceptNode(next, m_execContext))
249 while (next !
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DDefinitions.java168 action.perform((Entity) iter.next());
171 action.perform((Entity) iter.next());
174 action.perform((Entity) iter.next());
177 action.perform((Entity) iter.next());
180 action.perform((Entity) iter.next());
189 ((Import) iter.next()).accept(visitor);
197 ((Message) iter.next()).accept(visitor);
200 ((PortType) iter.next()).accept(visitor);
203 ((Binding) iter.next()).accept(visitor);
206 ((Service) iter.next())
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java429 SOAPElement child = (SOAPElement) eachChild.next();
540 Name name = (Name) i.next();
551 Name name = (Name) i.next();
570 String next = null;
576 while (next == null && eachNamespace.hasNext()) {
580 next = attributeKey.substring("xmlns:".length());
587 return next != null;
590 public Object next() {
592 if (next == null) {
596 last = next;
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDoclet.java172 ClassDoc next = (i+1 == arr.length)?
180 prev, next);
185 .getClassBuilder(curr, prev, next, classtree);
203 PackageDoc prev = null, next;
210 next = (i + 1 < packages.length &&
212 //If the next package is unnamed package, skip 2 ahead if possible
213 next = (i + 2 < packages.length && next == null) ? packages[i + 2] : next;
216 packages[i], prev, next);
[all...]
/openjdk7/jdk/test/java/security/Provider/
H A DRemoveProvider.java77 me = (Map.Entry)i.next();
96 o = i.next();
111 System.out.println((String)i.next());
124 me = (Map.Entry)i.next();
135 o = i.next();
141 System.out.println((String)i.next());
151 me = (Map.Entry)i.next();
158 o = i.next();
164 System.out.println((String)i.next());
172 me = (Map.Entry)i.next();
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsatbQueue.cpp228 for (JavaThread* t = first; t; t = t->next()) {
256 for (JavaThread* t = first; t; t = t->next()) {
276 for(JavaThread* t = Threads::first(); t; t = t->next()) {
292 for(JavaThread* t = Threads::first(); t; t = t->next()) {
302 for(JavaThread* t = Threads::first(); t; t = t->next()) {
309 // otherwise the next call to Thread::possibly_parallel_oops_do inside
329 _completed_buffers_head = nd->next();
354 nd = nd->next();
362 for (JavaThread* t = Threads::first(); t; t = t->next()) {
386 nd = nd->next();
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp51 _free_list = _free_list->next();
80 // rehash at the next safepoint. If this bucket is 60 times greater than the
88 // Set a flag for the next safepoint, which should be at some guaranteed
126 HashtableEntry<T, F>* next = p->next(); local
143 p = next;
178 BasicHashtableEntry<F>* next = p->next(); local
181 p = next;
214 for (BasicHashtableEntry<F>* p = bucket(i); p != NULL; p = p->next()) {
232 HashtableEntry<T, F>* next = p->next(); local
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinfback.c108 static code *next; local
116 next = fixed;
117 lenfix = next;
119 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
124 distfix = next;
126 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
147 next = strm->next_in; \
158 strm->next_in = next; \
176 have = in(in_desc, &next); \
178 next
273 unsigned char FAR *next; /* next input */ local
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DCacheTable.java39 Entry next; // this chains the collision list of table "map" field in class:CacheTable.Entry
44 next = null;
84 for (Entry e = oldMap[i]; e != null; e = e.next)
112 for (Entry e = map[index]; e != null; e = e.next) {
125 newEntry.next = map[index];
139 for (Entry e = map[index]; e != null; e = e.next) {
/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DUndoManager.java48 * index of the next edit in that list. The index of the next edit is
52 * <code>undo</code> is invoked all edits from the index of the next
67 * index of the next edit will be 4. Invoking <code>undo</code>
69 * index of the next edit to 3 (edit <i>c</i>), as shown in the following
82 * next edit to 0, as shown in the following figure.
92 * all edits between the index of the next edit and the next
96 * the index of the next edit is set to 3 (as shown in <a
100 * removing all edits from the index of the next edi
[all...]
/openjdk7/jdk/src/share/back/
H A DdebugLoop.c43 struct PacketList *next; member in struct:PacketList
267 pL->next = NULL;
276 while (walker->next != NULL)
277 walker = walker->next;
279 walker->next = pL;
297 cmdQueue = node->next;
/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.cpp39 MemPointerRecord* itr_next = (MemPointerRecord*)_itr.next();
46 itr_next = (MemPointerRecord*)_itr.next();
74 sizeof(MemRecorder), SequenceGenerator::next(), pc);
76 _pointer_records->instance_size(), SequenceGenerator::next(), pc);
91 _next = _next->next();
167 rc = (MemPointerRecord*)itr.next();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A Dmain.java131 int next = 0;
135 next = nextUnsignedRandom ();
137 for (int i = 0; i < NTHREADS; i++, next++) {
142 next = next % supported.length;
143 cipher [0] = supported [next];
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DMethodDecl.java153 getMethod("m3").getParameters().iterator().next();
155 getMethod("m3").getParameters().iterator().next();
162 getMethod("m3").getParameters().iterator().next();
164 getMethod("m4").getParameters().iterator().next();
171 getMethod("m3").getParameters().iterator().next();
173 getMethod("m3").getParameters().iterator().next();
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java443 * <li> A next-line character&nbsp;(<tt>'&#92;u0085'</tt>),
1464 String next = base + perms[x];
1466 result.append("|"+next);
1467 next = composeOneStep(next);
1468 if (next != null)
1469 result.append("|"+produceEquivalentAlternation(next));
1662 matchRoot.next = lastAccept;
1725 System.out.println("Tail next is "+node.next);
1825 private int next() { method in class:Pattern
3346 Node next; field in class:Pattern.Node
5344 BnM(int[] src, int[] lastOcc, int[] optoSft, Node next) argument
5398 BnMS(int[] src, int[] lastOcc, int[] optoSft, Node next) argument
[all...]

Completed in 91 milliseconds

<<11121314151617181920>>