Searched refs:nextEntry (Results 1 - 15 of 15) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DFilteredMemberList.java76 private Scope.Entry nextEntry = scope.elems;
84 while (nextEntry != null && unwanted(nextEntry.sym)) {
85 nextEntry = nextEntry.sibling;
87 hasNextForSure = (nextEntry != null);
93 Symbol result = nextEntry.sym;
94 nextEntry = nextEntry.sibling;
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPerfInstrumentation.java38 private int nextEntry; field in class:PerfInstrumentation
74 nextEntry = buffer.position();
80 return (nextEntry < prologue.getUsed());
88 if ((nextEntry % 4) != 0) {
91 "Entry index not properly aligned: " + nextEntry);
94 if (nextEntry < 0 || nextEntry > buffer.limit()) {
97 "Entry index out of bounds: nextEntry = " + nextEntry +
101 buffer.position(nextEntry);
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixDirectoryStream.java139 private Path nextEntry; field in class:UnixDirectoryStream.UnixDirectoryIterator
200 if (nextEntry == null && !atEof)
201 nextEntry = readNextEntry();
202 return nextEntry != null;
208 if (nextEntry == null && !atEof) {
211 result = nextEntry;
212 nextEntry = null;
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsDirectoryStream.java126 private Path nextEntry; field in class:WindowsDirectoryStream.WindowsDirectoryIterator
161 nextEntry = isSelfOrParent(first) ? null : acceptEntry(first, null);
163 if (nextEntry != null)
164 return nextEntry;
208 if (nextEntry == null && !atEof)
209 nextEntry = readNextEntry();
210 return nextEntry != null;
216 if (nextEntry == null && !atEof) {
219 result = nextEntry;
220 nextEntry
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalogEntry.java55 /** The nextEntry is the ordinal number of the next entry type. */
56 protected static int nextEntry = 0; field in class:CatalogEntry
81 entryTypes.put(name, new Integer(nextEntry));
82 entryArgs.add(nextEntry, new Integer(numArgs));
83 nextEntry++;
85 return nextEntry-1;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java94 int nextEntry; field in class:PerfDataBuffer
134 nextEntry = prologue.getEntryOffset();
285 * assumes that nextEntry is the offset into the byte array
293 if ((nextEntry % 4) != 0) {
296 + Integer.toHexString(nextEntry));
300 if ((nextEntry < 0) || (nextEntry > buffer.limit())) {
303 + Integer.toHexString(nextEntry)
308 if (nextEntry == buffer.limit()) {
310 + " nextEntry
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DLinkedHashMap.java367 Entry<K,V> nextEntry = header.after; field in class:LinkedHashMap.LinkedHashIterator
378 return nextEntry != header;
392 Entry<K,V> nextEntry() { method in class:LinkedHashMap.LinkedHashIterator
395 if (nextEntry == header)
398 Entry<K,V> e = lastReturned = nextEntry;
399 nextEntry = e.after;
405 public K next() { return nextEntry().getKey(); }
409 public V next() { return nextEntry().value; }
413 public Map.Entry<K,V> next() { return nextEntry(); }
H A DWeakHashMap.java850 * between nextEntry() and any use of the entry
880 protected Entry<K,V> nextEntry() { method in class:WeakHashMap.HashIterator
909 return nextEntry().value;
915 return nextEntry().getKey();
921 return nextEntry();
H A DHashMap.java924 final Entry<K,V> nextEntry() { method in class:HashMap.HashIterator
954 return nextEntry().value;
960 return nextEntry().getKey();
966 return nextEntry();
H A DTreeMap.java1110 final Entry<K,V> nextEntry() { method in class:TreeMap.PrivateEntryIterator
1151 return nextEntry();
1160 return nextEntry().value;
1169 return nextEntry().key;
1589 final TreeMap.Entry<K,V> nextEntry() { method in class:TreeMap.NavigableSubMap.SubMapIterator
1642 return nextEntry();
1655 return nextEntry().key;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java73 int nextEntry; field in class:PerfDataBuffer
113 nextEntry = buffer.position();
296 pollForEntry = nextEntry;
462 * assumes that nextEntry is the offset into the byte array
470 if ((nextEntry % 4) != 0) {
472 "Entry index not properly aligned: " + nextEntry);
476 if ((nextEntry < 0) || (nextEntry > buffer.limit())) {
478 "Entry index out of bounds: nextEntry = " + nextEntry
[all...]
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DClassFileReader.java286 private JarEntry nextEntry; field in class:ClassFileReader.JarFileReader.JarFileIterator
293 this.nextEntry = e;
300 return nextEntry != null;
310 cf = readClassFile(nextEntry);
314 JarEntry entry = nextEntry;
315 nextEntry = null;
320 nextEntry = e;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java1321 HashEntry<K, V> nextEntry; field in class:ConcurrentHashMap.HashIterator
1331 * Set nextEntry to first node of next non-empty table
1337 if ((nextEntry = entryAt(currentTable,
1351 final HashEntry<K,V> nextEntry() { method in class:ConcurrentHashMap.HashIterator
1352 HashEntry<K,V> e = nextEntry;
1356 if ((nextEntry = e.next) == null)
1361 public final boolean hasNext() { return nextEntry != null; }
1362 public final boolean hasMoreElements() { return nextEntry != null; }
1376 public final K next() { return super.nextEntry().key; }
1377 public final K nextElement() { return super.nextEntry()
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DQNameMap.java325 Entry<V> nextEntry() { method in class:QNameMap.HashIterator
347 return nextEntry().value;
441 return nextEntry();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java313 Entry<V> nextEntry() { method in class:QNameMap.HashIterator
427 return nextEntry();

Completed in 74 milliseconds