Searched defs:next (Results 426 - 450 of 702) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DClassWriterImpl.java58 protected ClassDoc next; field in class:ClassWriterImpl
63 * @param nextClass the next class being documented.
77 this.next = nextClass;
132 * Get link to next class.
134 * @return a content tree for the next class link
138 if (next != null) {
140 LinkInfoImpl.CONTEXT_CLASS, next, "",
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DListBuffer.java193 public A next() { method in class:ListBuffer
210 public A next() {
260 return next();
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A Dminst.c289 char *next; local
297 next = get_token(options, ",=", token, sizeof(token));
300 while ( next != NULL ) {
334 next = get_token(next, ",=", gdata->include+used, maxlen);
336 if ( next==NULL ) {
358 next = get_token(next, ",=", gdata->exclude+used, maxlen);
360 if ( next==NULL ) {
367 /* Get the next toke
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c62 * - Use local copies of stream next and avail values, as well as local bit
147 state->lencode = state->distcode = state->next = state->codes;
240 static code *next; local
248 next = fixed;
249 lenfix = next;
251 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
256 distfix = next;
258 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
431 next = strm->next_in; \
442 strm->next_in = next; \
583 unsigned char FAR *next; /* next input */ local
[all...]
H A Dinflate.h135 code FAR *next; /* next available space in codes[] */ member in struct:inflate_state
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_mem.c63 struct MemoryListLink * next; member in struct:MemoryListLink
115 link->next = MemoryList.next;
117 MemoryList.next = link;
300 link = MemoryList.next;
305 link = link->next;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DGlyphIterator.cpp253 next();
481 le_bool GlyphIterator::next(le_uint32 delta) function in class:GlyphIterator
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DGroup.java251 public Node next() { method in class:Group.ChildIterator
279 public Node next() { method in class:Group.RecursiveChildIterator
281 return subiterator.next();
283 return super.next();
330 Node node = childiterator.next();
342 public Object next() { method in class:Group.EnableSet.EnableIterator
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextConstructionTests.java340 super(constructtestroot, "tlfromlbm", "call LineBreakMeasurer.next()");
417 public char next() { method in class:TextConstructionTests.ArrayCI
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DCompositeType.java237 private CompositeType next; field in class:CompositeType
240 next = parent;
267 return next;
280 comptype = comptype.next;
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesRenderingEngine.java478 public void next() { method in class:PiscesRenderingEngine.NormalizingPathIterator
479 src.next();
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMessageHeader.java113 * Find the next value that corresponds to this key.
180 int next = -1; field in class:MessageHeader.HeaderIterator
197 next = index++;
205 public String next() { method in class:MessageHeader.HeaderIterator
209 return values [next];
212 return next();
270 Map.Entry entry = (Map.Entry)entries.next();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DUtil.java73 private int next(int i) { method in class:Util.BufferCache
96 while ((i = next(i)) != start) {
113 start = next(start);
137 int next = (start + count) % TEMP_BUF_POOL_SIZE;
138 buffers[next] = buf;
152 start = next(start);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java186 private FileStore next; field in class:UnixFileSystem.FileStoreIterator
197 UnixMountEntry entry = entries.next();
222 if (next != null)
224 next = readNext();
225 return next != null;
229 public synchronized FileStore next() { method in class:UnixFileSystem.FileStoreIterator
230 if (next == null)
231 next = readNext();
232 if (next == null) {
235 FileStore result = next;
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java43 Line next; field in class:MessageFile.Line
58 return (next != null) && text.endsWith("\\");
68 assert prev == null && next == null;
70 l.next = next;
71 if (next == null)
74 next.prev = l;
75 next = l;
85 assert prev == null && next == null;
87 l.next
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java263 InstructionHandle next = ih.next, ret = il.start;
265 ih.next = il.start;
268 il.end.next = next;
270 if(next != null) // i == end ?
271 next.prev = il.end;
334 ih.next = ih.prev = null;
337 end.next = ih;
339 ih.next
708 remove(InstructionHandle prev, InstructionHandle next) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DMode.java275 // Get the next template
561 InstructionHandle next)
575 til.append(new GOTO_W(next));
581 _templateIHs.put(template, next);
628 InstructionHandle next) {
646 il.append(new GOTO_W(next));
656 InstructionHandle next) {
667 il.append(new GOTO_W(next));
781 // Create an instruction list that contains the default next-node
942 // This DOM-type is not in use - default: process next nod
559 compileTemplates(ClassGenerator classGen, MethodGenerator methodGen, InstructionHandle next) argument
626 compileDefaultRecursion(ClassGenerator classGen, MethodGenerator methodGen, InstructionHandle next) argument
654 compileDefaultText(ClassGenerator classGen, MethodGenerator methodGen, InstructionHandle next) argument
1055 compileTemplateCalls(ClassGenerator classGen, MethodGenerator methodGen, InstructionHandle next, int min, int max) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DKeyIndex.java216 * <p>Callers should not call next() after it returns END.</p>
221 public int next() { method in class:KeyIndex
243 .setStartNode(node).next();
294 .setStartNode(node).next();
343 * <p>Remembers the current node for the next call to gotoMark().</p>
364 * i.e. subsequent call to next() should return END.</p>
381 * i.e. subsequent call to next() should return END.</p>
550 * Position in {@link #_nodes} array of next node to return from
571 * Advance to the next node represented by this {@link HeapNode}
573 * @return the next DT
761 public int next() { method in class:KeyIndex.KeyIndexIterator
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLStreamFilterImpl.java56 * hasNext() to advance the underlining stream in order to find the next acceptable event
91 public int next() throws XMLStreamException { method in class:XMLStreamFilterImpl
146 fCurrentEvent = fStreamReader.next();
152 //although it seems that IllegalStateException should be thrown when next() is called
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java777 public Object next() { method in class:XSModelImpl.XSNamespaceItemListIterator
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesImpl.java78 * propogated to the next stage.
276 fAttributes[index].next = null;
288 found = found.next;
303 fAttributes[index].next = fAttributeTableView[bucket];
841 attr.next = null;
854 found = found.next;
858 attr.next = fAttributeTableView[bucket];
979 attr.next = null;
984 attr.next = fAttributeTableView[bucket];
1187 /** Pointer to the next attribut
1188 public Attribute next; field in class:XMLAttributesImpl.Attribute
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseIterators.java260 * returned (starting point for the next() search); for single-node
266 * Remembers the current node for the next call to gotoMark().
295 * i.e. subsequent call to next() should return END.
323 * Get the next node in the iteration.
325 * @return The next node handle in the iteration, or END if no more
328 public int next() method in class:DTMDefaultBaseIterators.ChildrenIterator
353 * i.e. subsequent call to next() should return END.
394 * Get the next node in the iteration. In this case, we return
397 * @return The next node handle in the iteration, or END.
399 public int next() method in class:DTMDefaultBaseIterators.ParentIterator
473 public int next() method in class:DTMDefaultBaseIterators.TypedChildrenIterator
562 public int next() method in class:DTMDefaultBaseIterators.NamespaceChildrenIterator
628 public int next() method in class:DTMDefaultBaseIterators.NamespaceIterator
667 public int next() method in class:DTMDefaultBaseIterators.TypedNamespaceIterator
731 public int next() method in class:DTMDefaultBaseIterators.RootIterator
768 public int next() method in class:DTMDefaultBaseIterators.TypedRootIterator
852 public int next() method in class:DTMDefaultBaseIterators.NamespaceAttributeIterator
899 public int next() method in class:DTMDefaultBaseIterators.FollowingSiblingIterator
933 public int next() method in class:DTMDefaultBaseIterators.TypedFollowingSiblingIterator
1005 public int next() method in class:DTMDefaultBaseIterators.AttributeIterator
1068 public int next() method in class:DTMDefaultBaseIterators.TypedAttributeIterator
1153 public int next() method in class:DTMDefaultBaseIterators.PrecedingSiblingIterator
1197 public int next() method in class:DTMDefaultBaseIterators.TypedPrecedingSiblingIterator
1352 public int next() method in class:DTMDefaultBaseIterators.PrecedingIterator
1428 public int next() method in class:DTMDefaultBaseIterators.TypedPrecedingIterator
1532 public int next() method in class:DTMDefaultBaseIterators.FollowingIterator
1568 public int next() method in class:DTMDefaultBaseIterators.TypedFollowingIterator
1712 public int next() method in class:DTMDefaultBaseIterators.AncestorIterator
1875 public int next() method in class:DTMDefaultBaseIterators.DescendantIterator
1947 public int next() method in class:DTMDefaultBaseIterators.TypedDescendantIterator
2001 public int next() method in class:DTMDefaultBaseIterators.NthDescendantIterator
2137 public int next() method in class:DTMDefaultBaseIterators.SingletonIterator
2173 public int next() method in class:DTMDefaultBaseIterators.TypedSingletonIterator
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyConstructedImpl.java135 public boolean next() { method in class:DynAnyConstructedImpl
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c123 lib_info *next = lib->next; local
128 lib = next;
135 thread_info *next = thr->next; local
137 thr = next;
197 ph->lib_tail->next = newlib;
223 lib = lib->next;
240 lib = lib->next;
258 newthr->next
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c124 lib_info *next = lib->next; local
129 lib = next;
136 thread_info *next = thr->next; local
138 thr = next;
195 ph->lib_tail->next = newlib;
221 lib = lib->next;
238 lib = lib->next;
256 newthr->next
[all...]

Completed in 358 milliseconds

<<11121314151617181920>>