Searched refs:next (Results 676 - 700 of 2130) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DFastCharsetProvider.java150 public Charset next() {
151 String csn = i.next();
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageInfo.java274 l = l.next;
275 if (l.next != null && !l.next.text.isEmpty())
283 while (l.text.endsWith("\\") && l.next != null) {
284 if (!l.next.text.matches("^ \\S.*"))
285 l.next.text = " " + l.next.text.trim();
286 l = l.next;
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp65 Symbol* signature, MethodMatcher* next);
66 MethodMatcher(Symbol* class_name, Symbol* method_name, MethodMatcher* next);
86 MethodMatcher* next() const { return _next; } function in class:MethodMatcher
118 MethodMatcher::MethodMatcher(Symbol* class_name, Symbol* method_name, MethodMatcher* next) { argument
121 _next = next;
130 Symbol* signature, MethodMatcher* next):
133 , _next(next)
176 Symbol* signature, const char * opt, MethodMatcher* next):
177 MethodMatcher(class_name, class_mode, method_name, method_mode, signature, next) {
191 current = current->next();
128 MethodMatcher(Symbol* class_name, Mode class_mode, Symbol* method_name, Mode method_mode, Symbol* signature, MethodMatcher* next) argument
174 MethodOptionMatcher(Symbol* class_name, Mode class_mode, Symbol* method_name, Mode method_mode, Symbol* signature, const char * opt, MethodMatcher* next) argument
196 MethodOptionMatcher* next() { function in class:MethodOptionMatcher
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceRefKlass.cpp81 // i.e. if next is non-NULL.
96 // field for the pending list, an inactive ref (next != NULL)
98 oop next = oopDesc::load_decode_heap_oop(next_addr); local
100 assert(oopDesc::is_null(next) || oopDesc::is_null(discovered),
105 // treat next as normal oop. next is a link in the reference queue.
108 gclog_or_tty->print_cr(" Process next as normal " INTPTR_FORMAT, next_addr);
161 // i.e. if next is non-NULL.
176 // field for the pending list, an inactive ref (next != NULL)
178 T next local
402 oop next = oopDesc::load_decode_heap_oop(next_addr); local
502 oop next = java_lang_ref_Reference::next(obj); local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DConnection.java502 ldapRequest.next = null;
504 ldapRequest.next = pendingRequests;
516 ldr = ldr.next;
531 ldrprev.next = ldr.next;
533 pendingRequests = ldr.next;
535 ldr.next = null;
538 ldr = ldr.next;
584 pendingRequests = ldr = ldr.next;
674 ldr = ldr.next;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java276 * Index of the next item to be added in the constant pool.
417 * {@link FieldWriter#next} field. This field stores the first element of
425 * {@link FieldWriter#next} field. This field stores the last element of
433 * {@link MethodWriter#next} field. This field stores the first element of
441 * {@link MethodWriter#next} field. This field stores the last element of
667 aw.next = anns;
670 aw.next = ianns;
677 attr.next = attrs;
744 fb = fb.next;
751 mb = mb.next;
[all...]
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DInternalLocaleBuilder.java156 itr.next();
207 itr.next();
247 itr.next();
256 itr.next();
278 itr.next();
287 itr.next();
510 itr.next();
559 itr.next();
580 itr.next();
610 itr.next();
[all...]
H A DLanguageTag.java240 itr.next();
264 itr.next();
287 itr.next();
305 itr.next();
329 itr.next();
349 itr.next();
358 itr.next();
391 itr.next();
400 itr.next();
468 varitr.next();
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java124 * The next EventQueue on the stack, or null if this EventQueue is
333 queues[priority].tail.next = newItem;
420 entry != null; entry = entry.next)
524 * @return the next <code>AWTEvent</code>
557 queues[i].head = entry.next;
558 if (entry.next == null) {
580 entry != null; prev = entry, entry = entry.next)
584 queues[i].head = entry.next;
586 prev.next = entry.next;
[all...]
/openjdk7/jdk/src/share/back/
H A DthreadControl.c83 struct ThreadNode *next; member in struct:ThreadNode
130 struct DeferredEventMode *next; member in struct:DeferredEventMode
212 for (node = list->first; node != NULL; node = node->next) {
266 ThreadNode *next; local
269 next = node->next;
271 prev->next = next;
273 if ( next != NULL ) {
274 next
481 DeferredEventMode *next; local
516 DeferredEventMode *next = eventMode->next; local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp111 Instruction* t_cur = t_block->next();
112 Instruction* f_cur = f_block->next();
119 t_cur = t_cur->next();
123 f_cur = f_cur->next();
371 Instruction* next = sux->next(); local
373 prev->set_next(next);
417 while (prev != NULL && prev->next() != if_) {
418 prev = prev->next();
436 assert(prev->next()
808 BlockBegin* next = block->exception_handler_at(i); local
832 BlockBegin* next = e->sux_at(i); local
1168 BlockBegin* next = end->sux_at(s); local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeIteratorBase.java77 * subsequent calls to next() must return END.
114 } while (next() != END);
H A DNthIterator.java64 public int next() { method in class:NthIterator
78 while ((node = _source.next()) != DTMAxisIterator.END) {
H A DSingletonIterator.java81 public int next() { method in class:SingletonIterator
H A DUnionIterator.java41 comparison on the value of their next() method
56 _node = iterator.next();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSGrammarPool.java56 for (Entry entry = fGrammars[i] ; entry != null ; entry = entry.next) {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DSuballocatedByteVector.java324 byte[] next=m_map[index+1];
325 if(next!=null)
326 block[m_blocksize-1]=(next!=null) ? next[0] : 0;
H A DSuballocatedIntVector.java366 int[] next=m_map[index+1];
367 if(next!=null)
368 block[m_blocksize-1]=(next!=null) ? next[0] : 0;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DChildTestIterator.java78 * Get the next node via getNextXXX. Bottlenecked for derived class override.
79 * @return The next node on the axis, or DTM.NULL.
87 : m_traverser.next(m_context, m_lastFetched);
93 // : m_traverser.next(m_context, m_lastFetched,
H A DOneStepIteratorForward.java138 * Get the next node via getFirstAttribute && getNextAttribute.
144 : m_traverser.next(m_context, m_lastFetched);
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamReader.java41 * next() and hasNext(). The data can be accessed using methods such as getEventType(),
44 * <p> The <a href="#next()">next()</a> method causes the reader to read the next parse event.
45 * The next() method returns an integer which identifies the type of event just read.
94 * <td> next(), getName(), getLocalName(), hasName(), getPrefix(),
101 * <td> next(), nextTag()
107 * <td> next(), nextTag()
113 * <td> next(), getName(), getLocalName(), hasName(), getPrefix(),
119 * <td> next(), getTextXX
205 public int next() throws XMLStreamException; method in interface:XMLStreamReader
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DProcessMonitorThread.java76 ServerTableEntry entry = (ServerTableEntry) serverList.next();
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DPropertyParser.java68 ParserAction act = (ParserAction)(iter.next()) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapStream.java67 public void next() { method in class:OopMapStream
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBlockSym.java76 ((BasicLocalSym) iter.next()).resolve(db, listener);

Completed in 130 milliseconds

<<21222324252627282930>>