/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentHashMap.java | 983 for (Node<K,V> p; (p = it.advance()) != null; ) { in containsValue() 1306 for (Node<K,V> p; (p = it.advance()) != null; ) in hashCode() 1330 if ((p = it.advance()) != null) { in toString() 1337 if ((p = it.advance()) == null) in toString() 1363 for (Node<K,V> p; (p = it.advance()) != null; ) { in equals() 1427 for (Node<K,V> p; (p = it.advance()) != null; ) { in writeObject() 1607 for (Node<K,V> p; (p = it.advance()) != null; ) { in forEach() 1618 for (Node<K,V> p; (p = it.advance()) != null; ) { in replaceAll() 1641 for (Node<K,V> p; (p = it.advance()) != null; ) { in removeEntryIf() 1661 for (Node<K,V> p; (p = it.advance()) != null; ) { in removeValueIf() [all …]
|
D | LinkedTransferQueue.java | 875 private void advance(Node pred) { in advance() method in LinkedTransferQueue.Itr 902 advance(null); in Itr() 913 advance(lastRet = p); in next() 920 for (Node p; (p = nextNode) != null; advance(q = p)) in forEachRemaining()
|
D | ConcurrentSkipListMap.java | 2114 advance(baseHead()); in Iter() 2122 final void advance(Node<K,V> b) { in advance() method in ConcurrentSkipListMap.Iter 2149 advance(next); in next() 2160 advance(n); in next() 2172 advance(n); in next() 2932 final void advance() { in advance() method in ConcurrentSkipListMap.SubMap.SubMapIter 3010 advance(); in next() 3021 advance(); in next() 3037 advance(); in next()
|
D | ConcurrentLinkedDeque.java | 1383 advance(); in AbstractItr() 1390 private void advance() { in advance() method in ConcurrentLinkedDeque.AbstractItr 1417 advance(); in next()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StringUTF16.java | 1271 i = advance(a, i, hi, action); 1281 index = advance(array, index, fence, action); 1289 private static int advance(byte[] a, int i, int hi, IntConsumer action) { 1469 i = advance(a, i, hi, action); 1479 index = advance(array, index, fence, action); 1491 private static int advance(String a, int i, int hi, IntConsumer action) {
|
/libcore/ojluni/src/main/java/java/util/ |
D | Scanner.java | 2967 private boolean advance = false; // true if we need to auto-advance field in Scanner.FindSpliterator 3007 if (advance) { in nextInBuffer() 3014 advance = false; in nextInBuffer() 3020 advance = matcher.start() == position; in nextInBuffer()
|
D | Formatter.java | 2771 advance(); in FormatSpecifierParser() 2783 flags += advance(); in FormatSpecifierParser() 2791 advance(); in FormatSpecifierParser() 2799 tT = String.valueOf(advance()); in FormatSpecifierParser() 2802 conv = String.valueOf(advance()); in FormatSpecifierParser() 2810 advance(); in nextInt() 2826 private char advance() { in advance() method in Formatter.FormatSpecifierParser
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | LinkedBlockingDeque.java | 330 void advance() { in advance() method in LinkedBlockingDeque.AbstractItr
|