Searched refs:next (Results 376 - 400 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMirrorImpl.java89 MirrorImpl mirror = (MirrorImpl)iter.next();
102 MirrorImpl mirror = (MirrorImpl)iter.next();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DContextAction.java61 update(result.allInstances().iterator().next());
69 final T t = result.allInstances().iterator().next();
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DArgsParser.java34 boolean next() { return ++i < args.length; } method in class:ArgIterator
80 ai.next();
H A DUtil.java41 sb.append(iter.next());
61 sb.append((String)iter.next());
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DCommandSetNode.java47 ((Node)it.next()).document(writer);
57 ((Node)it.next()).documentIndex(writer);
/openjdk7/hotspot/src/share/vm/prims/
H A DprivilegedStack.cpp34 void PrivilegedElement::initialize(vframeStream* vfst, oop context, PrivilegedElement* next, TRAPS) { argument
43 _next = next;
/openjdk7/hotspot/src/share/vm/runtime/
H A DreflectionUtils.cpp56 next();
82 for (;!eos(); next()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DUnicodeEscapeWriter.java44 public UnicodeEscapeWriter( Writer next ) {
45 super(next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DStringCutter.java48 next(regexp);
51 public String next(String regexp) throws ParseException { method in class:StringCutter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DChunkInputStream.java68 * Gets to the next chunk if we are done with the current one.
76 while(!part.parsed && current.next == null) {
79 current = current.next;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DW3CWsaClientTube.java39 public W3CWsaClientTube(WSDLPort wsdlPort, WSBinding binding, Tube next) { argument
40 super(wsdlPort, binding, next);
/openjdk7/jdk/src/windows/native/java/net/
H A DNetworkInterface.h39 struct _netaddr *next; member in struct:_netaddr
48 struct _netif *next; member in struct:_netif
/openjdk7/jdk/test/com/sun/jdi/
H A DLineNumberInfo.java163 Location location = (Location)iter.next();
175 Location location = (Location)iter.next();
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DConnectWrite.java61 SelectionKey sk = (SelectionKey)i.next();
77 SelectionKey sk = (SelectionKey)i.next();
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionFormat.java81 OptionFormat o = (OptionFormat)i.next();
86 OptionFormat o = (OptionFormat)i.next();
H A DRawOutputFormatter.java52 Monitor m = (Monitor)i.next();
64 Monitor m = (Monitor)i.next();
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DTest.java244 while (last.next != null) {
245 last = last.next;
247 last.next = dl;
252 private DependentLink next; field in class:Test.DependentLink
270 return next;
276 Object val = iter.next();
279 if (next == null) {
283 next.recurseAndRun(env, test);
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedListBash.java72 intersection.remove(e.next());
78 Object o = e.next();
112 if(((Integer)it.next()).intValue() % 2 == 1)
116 if(((Integer)it.next()).intValue() % 2 == 1)
142 Integer i = (Integer)itAll.next();
148 if(it.next()==itAll.next())
156 Object o = it.next();
/openjdk7/jdk/test/java/util/EnumSet/
H A DSmallEnumIteratorRemoveResilience.java52 SmallEnum element = iterator.next();
58 element = iterator.next();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DSoftCache.java398 Entry next = null;
402 Map.Entry ent = (Map.Entry)hashIterator.next();
409 next = new Entry(ent, v);
415 public Object next() {
416 if ((next == null) && !hasNext())
418 Entry e = next;
419 next = null;
436 for (Iterator i = iterator(); i.hasNext(); i.next()) j++;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp82 for (entry = entry_at(i); entry != NULL; entry = entry->next()) {
92 if (entry->nesting() != nesting() && new_entries.at(new_index) != entry->next()) {
95 // clone entry when next-pointer must be changed
115 for (ValueMapEntry* entry = entry_at(entry_index(hash, size())); entry != NULL; entry = entry->next()) {
156 for (ValueMapEntry* entry = entry_at(i); entry != NULL; entry = entry->next()) { \
165 _entries.at_put(i, entry->next()); \
168 prev_entry->set_next(entry->next()); \
240 for (ValueMapEntry* entry = entry_at(i); entry != NULL; entry = entry->next()) {
331 for (Value instr = block->next(); instr != NULL; instr = instr->next()) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DFilterExprIteratorSimple.java143 * Returns the next node in the set and advances the position of the
147 * @return The next <code>Node</code> in the set being iterated over, or
155 int next;
159 m_lastFetched = next = m_exprObj.nextNode();
162 m_lastFetched = next = DTM.NULL;
164 // m_lastFetched = next;
165 if (DTM.NULL != next)
168 return next;
H A DOneStepIterator.java123 * Get the next node via getFirstAttribute && getNextAttribute.
127 return m_lastFetched = m_iterator.next();
217 int next;
219 while (DTM.NULL != (next = clone.nextNode()))
276 int next;
278 while (DTM.NULL != (next = clone.nextNode()))
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPage.java34 private Page next; field in class:Page
79 return next;
82 public void setNext(Page next) { argument
83 this.next = next;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java71 // returned in the next call to
129 next(false);
189 * Moves the iterator to the next segment of the path forwards
193 public void next() { method in class:FlatteningPathIterator
194 next(true);
197 private void next(boolean doNext) { method in class:FlatteningPathIterator
202 src.next();
259 // the former curve and one of them is in the next
261 // curves level values to the next higher level.
306 // the former curve and one of them is in the next
[all...]

Completed in 144 milliseconds

<<11121314151617181920>>