Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
DSpinedBufferTest.java105 List<Integer> contentOfLastSplit = new ArrayList<>(); in testLastSplit() local
106 spliterator.forEachRemaining(contentOfLastSplit::add); in testLastSplit()
108 assertEquals(contentOfLastSplit.size(), lastSplitSize); in testLastSplit()
114 assertEquals(contentOfLastSplit, end); in testLastSplit()
180 List<Integer> contentOfLastSplit = new ArrayList<>(); in testIntLastSplit() local
181 spliterator.forEachRemaining((IntConsumer) contentOfLastSplit::add); in testIntLastSplit()
183 assertEquals(contentOfLastSplit.size(), lastSplitSize); in testIntLastSplit()
189 assertEquals(contentOfLastSplit, end); in testIntLastSplit()
255 List<Long> contentOfLastSplit = new ArrayList<>(); in testLongLastSplit() local
256 spliterator.forEachRemaining((LongConsumer) contentOfLastSplit::add); in testLongLastSplit()
[all …]