Searched refs:next (Results 101 - 125 of 2130) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DReversePtrsAnalysis.java96 thread = thread.next()) {
123 Oop next = field.getValue(getObj());
129 rp.put(lp, next);
131 markAndTraverse(next);
210 Oop next = obj;
216 final Oop currObj = next;
243 Oop next = field.getValue(currObj);
244 rp.put(new LivenessPathElement(currObj, field.getID()), next);
245 if ((next != null) && markBits.mark(next)) {
[all...]
/openjdk7/jdk/test/java/util/Deque/
H A DChorusLine.java48 equal(it.next(), 8);
57 equal(it.next(), 9);
58 equal(it.next(), 7);
65 equal(it.next(), 6);
76 try {deq.iterator().next(); fail();}
80 try {deq.descendingIterator().next(); fail();}
88 equal(it.next(), 0);
89 equal(it.next(), 1);
94 equal(it.next(), -2);
95 equal(it.next(),
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmMemGCTableMetaImpl.java90 // the next element whose OID follows the given index.
92 // (the next is 0 = -insertion - 1)
98 int next;
99 if (insertion > -1) next = insertion+1;
100 else next = -insertion -1;
102 // Now `next' points to the element that imediately
104 // through the table, starting at `next' (included),
108 for (;next<datas.indexes.length;next++) {
109 if (dbg) log.debug("GCTableFilter","next
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractSet.java124 E obj = i.next();
173 modified |= remove(i.next());
176 if (c.contains(i.next())) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadIterator.java67 public ThreadReference next() { method in class:ThreadIterator
68 return it.next();
72 return next();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadIterator.java70 public ThreadReference next() { method in class:ThreadIterator
71 return it.next();
75 return next();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiThreadState.inline.hpp46 inline JvmtiEnvThreadState* JvmtiEnvThreadStateIterator::next(JvmtiEnvThreadState* ets) { function in class:JvmtiEnvThreadStateIterator
47 return ets->next();
54 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
H A DprivilegedStack.hpp38 PrivilegedElement* _next; // Link to next one on stack
40 void initialize(vframeStream* vf, oop context, PrivilegedElement* next, TRAPS);
46 PrivilegedElement *next() const { return _next; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/util/
H A DStAXFilteredParser.java51 public int next() throws XMLStreamException method in class:StAXFilteredParser
54 return super.next();
62 super.next();
/openjdk7/jdk/test/java/io/charStreams/
H A DABCInputStream.java34 char next = firstChar(); field in class:ABCInputStream
61 char c = next;
62 next = nextChar(c);
H A DLineGenerator.java49 public String next() { method in class:LineGenerator
53 String l = sg.next();
60 t = ig.next(2);
H A DStringGenerator.java60 public String next() { method in class:StringGenerator
64 int len = ig.next(80);
68 s.append(cg.next());
/openjdk7/jdk/test/javax/security/auth/Subject/
H A DSynch.java47 Principal next = new X500Principal("CN=Bob" + i);
48 principals.add(next);
50 last = next;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractTubeImpl.java60 protected final NextAction doInvoke(Tube next, Packet packet) { argument
62 na.invoke(next,packet);
66 protected final NextAction doInvokeAndForget(Tube next, Packet packet) { argument
68 na.invokeAndForget(next,packet);
84 protected final NextAction doSuspend(Tube next) { argument
86 na.suspend(next);
/openjdk7/jdk/test/java/io/StreamTokenizer/
H A DReadAhead.java46 private int next = 0; field in class:ReadAhead.LimitedInputStream
54 if (next >= limit)
56 return input.charAt(next++);
67 private int next = 0; field in class:ReadAhead.LimitedReader
75 if (next >= limit)
77 return input.charAt(next++);
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java123 return next != null;
126 public Tree next() {
127 Tree t = next.leaf;
128 next = next.parent;
136 private TreePath next = TreePath.this;
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c87 attribute->next = NULL;
91 context->tail->next = attribute;
127 jarAttribute* next = (jarAttribute*)head->next; local
131 head = next;
145 attributes = (jarAttribute*)attributes->next;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegexParser.java132 this.next();
164 final void next() { method in class:RegexParser
182 throw ex("parser.next.1", this.offset-1);
249 throw ex("parser.next.2", this.offset-1);
259 throw ex("parser.next.2", this.offset-3);
266 throw ex("parser.next.3", this.offset-3);
274 throw ex("parser.next.4", this.offset-1);
283 ret = T_CONDITION; // this.offsets points the next of '('.
286 throw ex("parser.next.2", this.offset-2);
293 throw ex("parser.next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DFilteredStepIterator.java46 public int next() { method in class:FilteredStepIterator
48 while ((node = super.next()) != END) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DSoftReferenceGrammarPool.java164 for (Entry entry = fGrammars[index]; entry != null; entry = entry.next) {
192 for (Entry entry = fGrammars[index]; entry != null; entry = entry.next) {
220 for (Entry entry = fGrammars[index]; entry != null; entry = entry.next) {
242 for (Entry entry = fGrammars[index]; entry != null ; entry = entry.next) {
355 entry.prev.next = entry.next;
358 fGrammars[entry.bucket] = entry.next;
360 if (entry.next != null) {
361 entry.next.prev = entry.prev;
391 public Entry next; field in class:SoftReferenceGrammarPool.Entry
395 Entry(int hash, int bucket, XMLGrammarDescription desc, Grammar grammar, Entry next, ReferenceQueue queue) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DReverseAxesWalker.java72 * Get the next node in document order on the axes.
74 * @return the next node in document order on the axes, or null.
81 int next = m_iterator.next();
86 if (DTM.NULL == next)
89 return next;
152 int next;
154 while (DTM.NULL != (next = clone.nextNode()))
215 int next;
217 while (DTM.NULL != (next
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DLazySearchEnumerationImpl.java116 public Object next() throws NamingException { method in class:LazySearchEnumerationImpl
136 // need to find next match
137 Binding next;
141 next = (Binding)candidates.next();
142 obj = next.getObject();
154 new CompositeName(next.getName()) : null);
166 answer = new SearchResult(next.getName(),
167 next.getClassName(), obj,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeEnumConstantImpl.java38 EnumConstantImpl<Type,Class,Field,Method> next) {
39 super(owner, name, lexical, next);
36 RuntimeEnumConstantImpl( RuntimeEnumLeafInfoImpl owner, String name, String lexical, EnumConstantImpl<Type,Class,Field,Method> next) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DCollisionCheckStack.java53 private int[] next; field in class:CollisionCheckStack
71 next = new int[16];
103 next[size] = initialHash[hash];
118 next[size] = -1;
148 int n = next[size];
176 p = next[p];
188 System.arraycopy(next,0,n,0,oldSize);
191 next = n;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DReadIterator.java50 public Object next() { method in class:ReadIterator
51 return iterator.next();

Completed in 123 milliseconds

1234567891011>>