Home
last modified time | relevance | path

Searched defs:iterator (Results 1 – 2 of 2) sorted by relevance

/arch/core/core-common/src/test/java/androidx/collection/
DSafeIterableMapTest.java271 Iterator<Entry<Integer, Boolean>> iterator = map.iteratorWithAdditions(); in testIteratorWithAdditions1() local
287 Iterator<Entry<Integer, Boolean>> iterator = map.iteratorWithAdditions(); in testIteratorWithAdditions2() local
305 Iterator<Entry<Integer, Boolean>> iterator = map.iteratorWithAdditions(); in testIteratorWithAdditions3() local
320 Iterator<Entry<Integer, Boolean>> iterator = map.iteratorWithAdditions(); in testIteratorWithAdditions4() local
340 Iterator<Entry<Integer, Boolean>> iterator = map.iteratorWithAdditions(); in testIteratorWithAddition5() local
426 Iterator<Entry<Integer, Boolean>> iterator = map.descendingIterator(); in testDescendingIteratorEmpty() local
433 Iterator<Entry<Integer, Boolean>> iterator = map.iterator(); in testIteratorEmpty() local
440 Iterator<Entry<Integer, Boolean>> iterator = map.iteratorWithAdditions(); in testIteratorWithAdditionEmpty() local
/arch/core/core-common/src/main/java/androidx/arch/core/internal/
DSafeIterableMap.java140 public @NonNull Iterator<Map.Entry<K, V>> iterator() { in iterator() method in SafeIterableMap
141 ListIterator<K, V> iterator = new AscendingIterator<>(mStart, mEnd); in iterator() local
151 DescendingIterator<K, V> iterator = new DescendingIterator<>(mEnd, mStart); in descendingIterator() local
160 IteratorWithAdditions iterator = new IteratorWithAdditions(); in iteratorWithAdditions() local
218 Iterator<Map.Entry<K, V>> iterator = iterator(); in toString() local