Searched defs:next (Results 226 - 250 of 702) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/javavm/export/
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/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.h55 // next cell info in the cache's list
56 CacheCellInfo *next; member in struct:_CacheCellInfo
58 // next cell info in the glyph's cell list (next Glyph Cache Info)
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DRuleCharacterIterator.java64 // 3. Return isEscaped from next(). If this happens,
131 * @param pos upon input, the index of the next character to return. If a
154 * Returns the next character using the given options, or DONE if there
155 * are no more characters, and advance the position to the next
161 public int next(int options) { method in class:RuleCharacterIterator
212 * Returns true if the last character returned by next() was
214 * next() included PARSE_ESCAPED and the next character was an
236 * int c = iterator.next(...);
300 * calls to next()
[all...]
H A DUCharacterIterator.java139 * Returns the UTF16 code unit at index, and increments to the next
143 * @return the next UTF16 code unit, or DONE if the index is at the limit
147 public abstract int next(); method in class:UCharacterIterator
150 * Returns the code point at index, and increments to the next code
153 * <code>next()</code>. Otherwise the iterator is incremented past
156 * @return the next codepoint in text, or DONE if the index is at
161 int ch1 = next();
163 int ch2 = next();
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DInstruction.java46 Instruction next; field in class:Instruction
152 if (lbl == next) {
153 // goto to the next instruction, obsolete
199 if (lbl.next != null && env.opt()) {
200 switch (lbl.next.opc) {
204 opc = lbl.next.opc;
205 value = lbl.next.value;
216 if (value == next) {
217 // branch to next instruction, obsolete
221 if ((next
[all...]
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DStringTokenIterator.java74 public String next() { method in class:StringTokenIterator
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DNode.java51 private Node next; field in class:Node
91 return next;
95 this.next = node;
114 public Node next(); method in interface:Node.Iterator
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java41 for (; i != DONE; i = bi.next()) {
67 public int next(int n) { method in class:MirroredBreakIterator
84 public int next() { method in class:MirroredBreakIterator
/openjdk7/jdk/test/java/util/concurrent/BlockingQueue/
H A DLoopHelpers.java92 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DLoopHelpers.java92 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/ConcurrentQueues/
H A DLoopHelpers.java92 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/Exchanger/
H A DLoopHelpers.java91 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/ExecutorCompletionService/
H A DLoopHelpers.java91 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DLoopHelpers.java91 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantLock/
H A DLoopHelpers.java91 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/
H A DLoopHelpers.java91 public int next() { method in class:LoopHelpers.SimpleRandom
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java38 CacheEntry next; field in class:CacheEntry
191 for (CacheEntry e = tab[index]; e != null; e = e.next) {
220 old = old.next;
223 e.next = newTable[index];
252 for (CacheEntry e = tab[index]; e != null; e = e.next) {
269 ne.next = tab[index];
289 for (CacheEntry e = tab[index], prev = null; e != null; prev = e, e = e.next) {
292 prev.next = e.next;
294 tab[index] = e.next;
[all...]
H A DQueue.java60 newElt.next = head;
99 tail.next = null;
141 cursor = cursor.next;
192 cursor = cursor.next;
201 QueueElement next = null; field in class:QueueElement
212 (next == null ? " null" : " next")+"]";
H A DService.java111 * CharCodec cc = (CharCodec)ps.next();
277 nextName = (String)pending.next();
281 public Object next() throws ServiceConfigurationError { method in class:Service.LazyIterator
/openjdk7/jdk/src/share/native/sun/security/pkcs11/
H A Dj2secmod.h81 SECMODModuleList *next; member in struct:SECMODModuleListStr
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixDirectoryStream.java138 // next entry to return
157 // Returns next entry (or null)
206 public synchronized Path next() { method in class:UnixDirectoryStream.UnixDirectoryIterator
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DArrayNodeListIterator.java42 public int next() { method in class:ArrayNodeListIterator
H A DCachedNodeListIterator.java67 public int next() { method in class:CachedNodeListIterator
84 int node = _source.next();
H A DCurrentNodeListIterator.java68 * Index in _nodes of the next node to filter.
137 public int next() { method in class:CurrentNodeListIterator
160 while ((node = _source.next()) != END) {

Completed in 492 milliseconds

1234567891011>>