Home
last modified time | relevance | path

Searched refs:advance (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java983 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 …]
DLinkedTransferQueue.java875 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()
DConcurrentSkipListMap.java2114 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()
DConcurrentLinkedDeque.java1383 advance(); in AbstractItr()
1390 private void advance() { in advance() method in ConcurrentLinkedDeque.AbstractItr
1417 advance(); in next()
/libcore/ojluni/src/main/java/java/lang/
DStringUTF16.java1271 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/
DScanner.java2967 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()
DFormatter.java2771 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/
DLinkedBlockingDeque.java330 void advance() { in advance() method in LinkedBlockingDeque.AbstractItr