Searched refs:next (Results 351 - 375 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/runtime/
H A DvmThread.cpp82 bool empty = (_queue[prio] == _queue[prio]->next());
90 assert(q->next()->prev() == q && q->prev()->next() == q, "sanity check");
92 n->set_next(q->next());
93 q->next()->set_prev(n);
99 insert(_queue[prio]->next(), op);
109 assert(q->next()->prev() == q && q->prev()->next() == q, "sanity check");
110 q->prev()->set_next(q->next());
111 q->next()
517 VM_Operation* next = _cur_vm_operation->next(); local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java72 * The next size value at which to resize . Taking it as
117 for (Entry<V> e = table[i]; e != null; e = e.next) {
261 Entry<V> next = e.next;
263 e.next = newTable[i];
265 e = next;
295 Entry<V> next; // next entry to return field in class:QNameMap.HashIterator
305 next = n;
310 return next !
355 Entry<V> next; field in class:QNameMap.Entry
426 public Entry<V> next() { method in class:QNameMap.EntryIterator
[all...]
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A Dminst.c289 char *next; local
297 next = get_token(options, ",=", token, sizeof(token));
300 while ( next != NULL ) {
334 next = get_token(next, ",=", gdata->include+used, maxlen);
336 if ( next==NULL ) {
358 next = get_token(next, ",=", gdata->exclude+used, maxlen);
360 if ( next==NULL ) {
367 /* Get the next toke
[all...]
/openjdk7/jdk/test/java/util/WeakHashMap/
H A DGCDuringIteration.java64 equal(map.keySet().iterator().next(), k);
65 equal(map.values().iterator().next(), v);
72 equal(it.next().getValue(), i);
76 new F(){void f(){it.next();}});
82 return map.values().iterator().next();
115 it.next(); // protects first entry
132 it.next(); // protects first entry
150 it.next(); // protects first entry
169 it.next(); // protects first entry
188 it.next(); // protect
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DHashtable.java370 for (Entry<K,V> e = tab[i] ; e != null ; e = e.next) {
409 for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
436 for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
482 old = old.next;
488 e.next = newMap[index];
521 for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
559 for (Entry<K,V> e = tab[index], prev = null ; e != null ; prev = e, e = e.next) {
563 prev.next = e.next;
565 tab[index] = e.next;
1042 Entry<K,V> next; field in class:Hashtable.Entry
1044 Entry(int hash, K key, V value, Entry<K,V> next) argument
1165 public T next() { method in class:Hashtable.Enumerator
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeaderList.java330 * from {@link Iterator#next()}.
339 Header next;
342 if (next == null) {
345 return next != null;
348 public Header next() {
349 if (next == null) {
351 if (next == null) {
357 assert get(idx - 1) == next;
361 Header r = next;
362 next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java510 private Op compile(Token tok, Op next, boolean reverse) { argument
515 ret.next = next;
520 ret.next = next;
525 ret.next = next;
531 ret.next = next;
535 ret = next;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DBranchHandle.java89 bh_list = (BranchHandle)bh.next;
100 next = bh_list;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAbsoluteIterator.java70 public int next() { method in class:AbsoluteIterator
71 return returnNode(_source.next());
H A DCachedNodeListIterator.java67 public int next() { method in class:CachedNodeListIterator
84 int node = _source.next();
H A DForwardPositionIterator.java88 public int next() { method in class:ForwardPositionIterator
89 return returnNode(_source.next());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DXIncludeAwareParserConfiguration.java198 XMLDocumentHandler next = prev.getDocumentHandler();
201 if (next != null) {
202 fXIncludeHandler.setDocumentHandler(next);
203 next.setDocumentSource(fXIncludeHandler);
258 XMLDocumentHandler next = prev.getDocumentHandler();
261 if (next != null) {
262 fXIncludeHandler.setDocumentHandler(next);
263 next.setDocumentSource(fXIncludeHandler);
H A DXPointerParserConfiguration.java176 XMLDocumentHandler next = prev.getDocumentHandler();
180 if (next != null) {
181 fXIncludeHandler.setDocumentHandler(next);
182 next.setDocumentSource(fXIncludeHandler);
220 XMLDocumentHandler next = prev.getDocumentHandler();
224 if (next != null) {
225 fXIncludeHandler.setDocumentHandler(next);
226 next.setDocumentSource(fXIncludeHandler);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMAxisIterNodeList.java115 while (((node = m_iter.next()) != DTMAxisIterator.END)
137 while ((node = m_iter.next()) != DTMAxisIterator.END) {
H A DDTMAxisIteratorBase.java69 * i.e. subsequent call to next() should return END.
144 while (next() != END);
274 while ((node = next()) != DTMAxisIterator.END) {
/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/javax/xml/stream/util/
H A DEventReaderDelegate.java92 public Object next() { method in class:EventReaderDelegate
93 return reader.next();
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DTaggedProfileTemplateBase.java50 iter.next() ;
60 TaggedComponent comp = (TaggedComponent)(iter.next()) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DDebugInfoReadStream.java61 ObjectValue ov = (ObjectValue) itr.next();
76 ObjectValue ov = (ObjectValue) itr.next();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadLocalRandom.java128 protected int next(int bits) { method in class:ThreadLocalRandom
141 * @return the next value
155 * @return the next value
168 int bits = next(2);
184 * @return the next value
200 * @return the next value
215 * @return the next value
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.hpp73 inline OptionList(const char* name, bool enable, OptionList* next);
77 inline OptionList* next() const { return _next; } function in class:JavaAssertions::OptionList
H A DresolutionErrors.hpp93 ResolutionErrorEntry* next() const { function in class:ResolutionErrorEntry
94 return (ResolutionErrorEntry*)HashtableEntry<constantPoolOop, mtClass>::next();
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DfreeChunk.cpp64 FreeChunk* nextFC = next();
75 next(), prev(), cantCoalesce() ? "[can't coalesce]" : "");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadGroupIterator.java90 public ThreadGroupReference next() { method in class:ThreadGroupIterator
95 ThreadGroupReference tg = top().next();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadGroupIterator.java87 public ThreadGroupReference next() { method in class:ThreadGroupIterator
92 ThreadGroupReference tg = top().next();

Completed in 3026 milliseconds

<<11121314151617181920>>