Searched refs:next (Results 301 - 325 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DWhitespaceBasedBreakIterator.java55 for (char c = ci.first(); c != CharacterIterator.DONE; c = ci.next()) {
86 public int next() { method in class:WhitespaceBasedBreakIterator
94 public int next(int n) { method in class:WhitespaceBasedBreakIterator
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurveLink.java34 CurveLink next; field in class:CurveLink
108 this.next = link;
112 return next;
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java106 * to let it do this. it can determine based on whatever. so having a special 'next'
115 public boolean next(int script, int lim) { method in class:FontRunIterator
129 public boolean next() { method in class:FontRunIterator
130 return next(Script.COMMON, limit);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp61 ConcurrentG1RefineThread *next = NULL; local
63 ConcurrentG1RefineThread* t = new ConcurrentG1RefineThread(this, next, worker_id_offset, i);
67 next = t;
H A DconcurrentG1RefineThread.hpp73 ConcurrentG1RefineThread(ConcurrentG1Refine* cg1r, ConcurrentG1RefineThread* next,
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DAbstractNamedNode.java44 Node nameNode = (Node)it.next();
68 ((Node)it.next()).document(writer);
94 ((Node)it.next()).genJava(writer, depth+1);
H A DAbstractCommandNode.java39 ((Node)it.next()).document(writer);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/protocol/soap/
H A DServerMUTube.java47 public ServerMUTube(ServerTubeAssemblerContext tubeContext, Tube next) { argument
48 super(tubeContext.getEndpoint().getBinding(), next);
70 * next pipe will be inovked.
78 return doInvoke(super.next, request);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DComment.java222 for (Tag next : tagList) {
223 if (next instanceof ThrowsTag) {
224 found.append((ThrowsTag)next);
251 for (Tag next : tagList) {
252 if (next instanceof ParamTag) {
253 ParamTag p = (ParamTag)next;
267 for (Tag next : tagList) {
268 if (next instanceof SeeTag) {
269 found.append((SeeTag)next);
280 for (Tag next
[all...]
/openjdk7/jdk/test/java/util/PriorityQueue/
H A DPriorityQueueSort.java67 pq.add(i.next());
85 if ((i.next().intValue() & 1) == 1)
92 if ((i.next().intValue() & 1) == 1)
/openjdk7/jdk/test/java/util/concurrent/DelayQueue/
H A DIterate.java47 equal(it.next(), godots[0]);
54 it.next();
55 equal(it.next(), godots[1]);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCacheImpl.java64 AuthenticationInfo inf = (AuthenticationInfo)iter.next();
87 AuthenticationInfo inf = (AuthenticationInfo)iter.next();
106 AuthenticationInfo inf = (AuthenticationInfo)iter.next();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesIteratorImpl.java65 public Object next() { method in class:XMLAttributesIteratorImpl
73 }//next
82 //either the next method has been called yet, or the remove method has already been called
83 //after the last call to the next method.
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DEmptyIterator.java41 public final int next(){ return END; } method in class:EmptyIterator
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DFinalizerInfo.java90 * We iterate over the list (end of list is when head.next == head)
97 (OopField) k.findField("next", "Ljava/lang/ref/Reference;");
109 Oop next = nextField.getValue(head);
110 if (next == null || next.equals(head)) break;
111 head = next;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFutureTask.java352 volatile WaitNode next; field in class:FutureTask.WaitNode
370 WaitNode next = q.next;
371 if (next == null)
373 q.next = null; // unlink to help gc
374 q = next;
415 q.next = waiters, q);
445 s = q.next;
449 pred.next = s;
/openjdk7/hotspot/src/share/vm/classfile/
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 Djvmticmlr.h38 * the kind of information being passed, and a pointer to the next
79 struct _jvmtiCompiledMethodLoadRecordHeader* next; member in struct:_jvmtiCompiledMethodLoadRecordHeader
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp105 // is not in use by any IndexSet, it is stored on a free list. The next field
115 void set_next(BitBlock *next) { _data._next = next; } argument
116 BitBlock *next() { return _data._next; } function in class:IndexSet::BitBlock
205 // The next IndexSet on the free list (not used at same time as count)
212 IndexSet *next() { function in class:IndexSet
221 void set_next(IndexSet *next) { argument
224 check_watch("put on free list?", ((next == NULL) ? 0 : next->_serial_number));
227 _next = next;
452 uint next() { function in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java52 QueueElement next = null; field in class:EventQueue.QueueElement
97 newElt.next = head;
121 tail.next = null;
123 elt.prev = elt.next = null;
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DFilter.java37 * Each Filter in the chain, invokes the next filter within its own
49 * so it can invoke the next filter in the chain
64 * calls the next filter in the chain, or else
79 Filter f = iter.next();
95 * <li>invoke the next filter in the chain, by calling
105 * @param chain the Chain which allows the next filter to be invoked.
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DRootsQuery.java113 ReferenceChain next = ref.getNext();
117 if (next != null) {
119 obj.describeReferenceTo(next.getObj(), snapshot)
123 ref = next;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiThreadState.cpp77 for (JvmtiEnvBase* env = it.first(); env != NULL; env = it.next(env)) {
115 ets = it.next(ets);
151 for (JvmtiThreadState *state = _head; state != NULL; state = state->next()) {
160 ets = it.next(ets);
164 ets = ets->next();
188 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
336 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
358 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
411 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElement.java137 for (Element next : foreEdges) {
138 prev = next.assignDfsPostOrder(prev);
220 for (Element next : foreEdges) {
221 if(!next.checkCutSet(cc,visited))
/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);

Completed in 114 milliseconds

<<11121314151617181920>>