Searched defs:next (Results 276 - 300 of 702) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/java/util/
H A DServiceLoader.java351 nextName = pending.next();
355 public S next() { method in class:ServiceLoader.LazyIterator
401 * {@link java.util.Iterator#next next} methods can therefore throw a
406 * exception or error is thrown as the next provider is located and
411 * iterator will make a best effort to locate and instantiate the next
442 public S next() {
444 return knownProviders.next().getValue();
445 return lookupIterator.next();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DDelayQueue.java79 * the leader, it waits only for the next delay to elapse, but
289 * this method returns the element that will expire next,
505 int cursor; // index of next element to return;
518 public E next() { method in class:DelayQueue.Itr
535 if (it.next() == x) {
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/jdk/src/share/classes/javax/imageio/spi/
H A DServiceRegistry.java120 Class category = (Class)categories.next();
228 Class c = (Class)iter.next();
301 SubRegistry reg = (SubRegistry)regs.next();
331 registerServiceProvider(providers.next());
393 SubRegistry reg = (SubRegistry)regs.next();
416 SubRegistry reg = (SubRegistry)regs.next();
534 Class c = (Class)iter.next();
662 SubRegistry reg = (SubRegistry)iter.next();
772 Object provider = iter.next();
798 private T next field in class:FilterIterator
823 public T next() { method in class:FilterIterator
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttributes.java239 their = (Attribute)theirs.next();
273 hash += all.next().hashCode();
331 public Attribute next() throws NamingException { method in class:BasicAttributes.AttrEnumImpl
363 public String next() throws NamingException { method in class:BasicAttributes.IDEnumImpl
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.cpp41 OptionList* next) {
45 _next = next;
50 for (rc = 0; p != 0; p = p->next(), ++rc) /* empty */;
133 for (index = len - 1; p != 0; p = p->next(), --index) {
145 for (OptionList* p = _classes; p != 0; p = p->next()) {
168 for (OptionList* p = _packages; p != 0; p = p->next()) {
174 // Find the length of the next package, taking care to avoid decrementing
40 OptionList(const char* name, bool enabled, OptionList* next) argument
H A DloaderConstraints.hpp111 LoaderConstraintEntry* next() { function in class:LoaderConstraintEntry
112 return (LoaderConstraintEntry*)HashtableEntry<klassOop, mtClass>::next();
118 void set_next(LoaderConstraintEntry* next) { argument
119 HashtableEntry<klassOop, mtClass>::set_next(next);
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp42 VtableStub* _next; // Pointer to next entry in hash table
54 VtableStub* next() const { return _next; } function in class:VtableStub
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.cpp344 HeapRegion* next = curr->next(); local
347 curr = next;
367 HeapRegion* next = curr->next(); local
377 _head = next;
380 prev->set_next(next);
382 if (next == NULL) {
403 curr = next;
442 curr = curr->next();
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.hpp147 HeapWord* next = scroll_forward; local
148 while (next <= addr) {
149 scroll_forward = next;
150 next += oop(next)->size();
153 assert(addr <= next, "wrong order for arg and next");
H A DpsCompactionManager.cpp127 // Get the next available index
129 uint cur, next, last; local
132 next = cur + 1;
133 last = Atomic::cmpxchg(next, &_recycled_bottom, cur);
135 return _recycled_stack_index[next];
142 // Get the next available index
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp54 // while ((c = s.next()) >= 0) {
70 int _next_bci; // bci of next bytecode
140 // Use raw_next() rather than next() for faster method reference
150 // set next bytecode position
188 Bytecodes::Code next() { function in class:BytecodeStream
200 // set next bytecode position
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.hpp53 KlassInfoEntry(klassOop k, KlassInfoEntry* next) : argument
54 _klass(k), _instance_count(0), _instance_words(0), _next(next)
56 KlassInfoEntry* next() { return _next; } function in class:KlassInfoEntry
/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/com/sun/jndi/toolkit/dir/
H A DContextEnumerator.java106 return next();
112 public Object next() throws NamingException { method in class:ContextEnumerator
135 Binding oldBinding = ((Binding)children.next());
195 return (Binding)currentChildEnum.next();
199 // Ready to go onto next child
200 if(debug) {System.out.println("getNextDescedant: next case");}
/openjdk7/jdk/src/share/back/
H A DclassTrack.c54 struct KlassNode *next; /* next node in this slot */ member in struct:KlassNode
86 for (nodePtr = head; node = *nodePtr, node != NULL; nodePtr = &(node->next)) {
91 *nodePtr = node->next;
94 node->next = *newHead;
131 KlassNode *next; local
143 next = node->next;
146 node = next;
220 for (node = *head; node != NULL; node = node->next) {
[all...]
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/prims/
H A DjvmtiCodeBlobEvents.cpp54 // blob = collector.next();
93 // iteration support - return next code blob
94 JvmtiCodeBlobDesc* next() { function in class:CodeBlobCollector
169 // next iterate over all the non-nmethod code blobs and add them to
199 blob = collector.next();
/openjdk7/hotspot/src/share/vm/runtime/
H A DreflectionUtils.hpp41 // for (KlassStream st(k, false, false); !st.eos(); st.next()) {
65 virtual void next() = 0;
77 // for (MethodStream st(k, false, false); !st.eos(); st.next()) {
90 next();
93 void next() { _index--; } function in class:MethodStream
102 // for (FieldStream st(k, false, false); !st.eos(); st.next()) {
116 next();
119 void next() { _index -= 1; } function in class:FieldStream
194 // for (FilteredFieldStream st(k, false, false); !st.eos(); st.next()) {
210 void next() { function in class:FilteredFieldStream
[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...]
H A Dstack.hpp196 E next() { return *next_addr(); } function in class:StackIterator
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DForkingFilter.java43 * The side handler receives SAX events before the next handler in the filter chain does.
72 public ForkingFilter(ContentHandler next) { argument
73 setContentHandler(next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DAdaptedLister.java95 public OnWireItemT next() throws SAXException, JAXBException { method in class:AdaptedLister.ListIteratorImpl
96 InMemItemT next = core.next();
98 return getAdapter().marshal(next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DInterningXmlVisitor.java39 private final XmlVisitor next; field in class:InterningXmlVisitor
43 public InterningXmlVisitor(XmlVisitor next) { argument
44 this.next = next;
48 next.startDocument(locator,nsContext);
52 next.endDocument();
60 next.startElement(tagName);
66 next.endElement(tagName);
70 next.startPrefixMapping(intern(prefix),intern(nsUri));
74 next
[all...]
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 62 milliseconds

<<11121314151617181920>>