Searched refs:next (Results 426 - 450 of 2130) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNode.java54 Node node = (Node)it.next();
67 Node node = (Node)it.next();
75 Node node = (Node)it.next();
114 writer.println(" * " + (String)it.next());
127 Node node = (Node)it.next();
134 Node node = (Node)it.next();
188 Node node = (Node)it.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DEnumLeafInfoImpl.java244 private EnumConstantImpl<T,C,F,M> next = firstConstant;
246 return next!=null;
249 public EnumConstantImpl<T,C,F,M> next() {
250 EnumConstantImpl<T,C,F,M> r = next;
251 next = next.next;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamReaderBufferCreator.java78 * will be positioned at the next event after the end of the element.
96 * The stream reader will be moved to the position of the next start of
101 * will be positioned at the next event after the end of the element.
124 _eventType = reader.next();
160 _eventType = reader.next();
173 _eventType = reader.next();
196 _eventType = reader.next();
236 * Move to next item after the end of the element
239 _eventType = reader.next();
251 _eventType = reader.next();
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A Dbsd_close.c46 struct threadEntry *next; /* next thread */ member in struct:threadEntry
149 self->next = fdEntry->threads;
174 fdEntry->threads = curr->next;
176 prev->next = curr->next;
181 curr = curr->next;
219 curr = curr->next;
H A Dlinux_close.c45 struct threadEntry *next; /* next thread */ member in struct:threadEntry
132 self->next = fdEntry->threads;
157 fdEntry->threads = curr->next;
159 prev->next = curr->next;
164 curr = curr->next;
202 curr = curr->next;
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DXObjectOutputStream.java161 int next; field in class:XObjectOutputStream.InternalPutField
166 next = 0;
196 if (next < fieldName.length) {
197 fieldName[next] = name;
198 intValue[next] = value;
199 next++;
231 for (int i = 0; i < next; i++)
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c51 on return points to the next available entry's address. bits is the
78 code FAR *next; /* next available space in table */ local
175 filled is at next and has curr index bits. The code being used is huff
228 next = *table; /* current table to fill in */
259 min = fill; /* save offset to next table */
262 next[(huff >> drop) + fill] = this;
276 /* go to next symbol, update count, len */
290 next += min; /* here min is 1 << curr */
292 /* determine length of next tabl
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.c166 cache->tail->next = cellinfo;
171 cellinfo->next = NULL;
217 cache->head = current->next;
218 cache->tail->next = current;
220 current->next = NULL;
276 cellinfo = cellinfo->next;
308 cache->head = cellinfo->next;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java158 int next; // Strips an escaped white space.
160 if ((next = regex.charAt(offset)) == '#'
161 || next == '\t' || next == '\n' || next == '\f'
162 || next == '\r' || next == ' ') {
163 buffer.append((char)next);
167 buffer.append((char)next);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMinimalHTMLWriter.java299 Element next;
305 while((next = it.next()) != null) {
306 if (!inRange(next)) {
309 if (next instanceof AbstractDocument.BranchElement) {
315 writeStartParagraph(next);
316 } else if (isText(next)) {
317 writeContent(next, !inContent);
320 writeLeaf(next);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DParentNode.java303 // juggling so many next/previous pointers. (Wipe out the
543 ChildNode next = oldInternal.nextSibling;
544 prev.nextSibling = next;
545 if (next == null) {
550 next.previousSibling = prev;
624 Node next = child.getNextSibling();
625 if (next == null) {
951 ChildNode next = insertedChild.nextSibling;
955 (next != null && next
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DIORTemplateListImpl.java101 IORTemplate iortemp = (IORTemplate)(iter.next()) ;
121 IORTemplate thisTemplate = (IORTemplate)thisIterator.next() ;
122 IORTemplate listTemplate = (IORTemplate)listIterator.next() ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DDictionary.java65 probe = (DictionaryEntry) probe.next()) {
80 probe = (DictionaryEntry) probe.next()) {
101 entry = (DictionaryEntry) entry.next()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJNIHandleBlock.java63 public JNIHandleBlock next() { method in class:JNIHandleBlock
69 /* the next handle block is valid only if the current block is full */
90 JNIHandleBlock n = next();
113 cur = cur.next();
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterStateReasons.java257 iter.next();
284 myEntry = (Map.Entry) myIterator.next();
295 public Object next() { method in class:PrinterStateReasons.PrinterStateReasonSetIterator
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpinnerDateModel.java369 * Returns the next <code>Date</code> in the sequence, or <code>null</code> if
370 * the next date is after <code>end</code>.
372 * @return the next <code>Date</code> in the sequence, or <code>null</code> if
373 * the next date is after <code>end</code>.
383 Date next = cal.getTime();
384 return ((end == null) || (end.compareTo(next) >= 0)) ? next : null;
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DAreaOp.java215 int next = 0;
224 for (cur = next = right - 1; cur >= left; cur--) {
227 if (next > cur) {
228 edgelist[next] = e;
230 next--;
233 left = next + 1;
276 for (next = cur; next > left; next--) {
277 Edge prevedge = edgelist[next
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicIntegerArray.java259 int next = current + delta;
260 if (compareAndSetRaw(offset, current, next))
261 return next;
H A DAtomicLongArray.java259 long next = current + delta;
260 if (compareAndSetRaw(offset, current, next))
261 return next;
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DPartiallyOrderedSet.java177 DigraphNode node = (DigraphNode)iter.next();
192 public Object next() { method in class:PartialOrderIterator
198 DigraphNode node = (DigraphNode)outNodes.next();
/openjdk7/hotspot/src/share/vm/classfile/
H A DresolutionErrors.cpp52 error_probe = error_probe->next()) {
96 probe = probe->next()) {
120 *p = entry->next();
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.hpp131 BasicBlock *next() const { return _next; } function in class:MethodLiveness::BasicBlock
132 void set_next(BasicBlock *next) { _next = next; } argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.inline.hpp42 assert(hr->next() == NULL, hrs_ext_msg(this, "should not already be linked"));
70 assert(hr->next() == NULL, hrs_ext_msg(this, "should already be unlinked"));
146 _head = hr->next();
/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/hotspot/src/share/vm/runtime/
H A Dmutex.hpp223 debug_only(Monitor *next() const { return _next; }) function in class:Monitor
224 debug_only(void set_next(Monitor *next) { _next = next; })

Completed in 127 milliseconds

<<11121314151617181920>>