Searched refs:split2 (Results 1 – 3 of 3) sorted by relevance
233 Spliterator.OfInt split2 = split1.trySplit(); in test_spliterator_int() local234 assertNotNull(split2); in test_spliterator_int()235 split2.forEachRemaining((int value) -> recorder.add(value)); in test_spliterator_int()236 assertFalse(split2.tryAdvance((int value) -> fail())); in test_spliterator_int()237 assertFalse(split2.tryAdvance((Integer value) -> fail())); in test_spliterator_int()309 Spliterator.OfLong split2 = split1.trySplit(); in test_spliterator_long() local310 assertNotNull(split2); in test_spliterator_long()311 split2.forEachRemaining((long value) -> recorder.add(value)); in test_spliterator_long()312 assertFalse(split2.tryAdvance((long value) -> fail())); in test_spliterator_long()313 assertFalse(split2.tryAdvance((Long value) -> fail())); in test_spliterator_long()[all …]
146 Spliterator<T> split2 = spliterator.trySplit(); in runBasicSplitTests() local147 if (split2 != null) { in runBasicSplitTests()148 recordAndAssertBasicIteration(split2, recorder); in runBasicSplitTests()
4347 Spliterator.OfInt split2 = split1.trySplit(); in test_spliterator_int() local4348 assertNotNull(split2); in test_spliterator_int()4349 split2.forEachRemaining((int value) -> recorder.add(value)); in test_spliterator_int()4350 assertFalse(split2.tryAdvance((int value) -> fail())); in test_spliterator_int()4351 assertFalse(split2.tryAdvance((Integer value) -> fail())); in test_spliterator_int()4424 Spliterator.OfLong split2 = split1.trySplit(); in test_spliterator_long() local4425 assertNotNull(split2); in test_spliterator_long()4426 split2.forEachRemaining((long value) -> recorder.add(value)); in test_spliterator_long()4427 assertFalse(split2.tryAdvance((long value) -> fail())); in test_spliterator_long()4428 assertFalse(split2.tryAdvance((Long value) -> fail())); in test_spliterator_long()[all …]