Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/
DRemoveIfTester.java35 public static void runBasicRemoveIfTests(Supplier<Collection<Integer>> supp) { in runBasicRemoveIfTests() argument
36 Collection<Integer> integers = supp.get(); in runBasicRemoveIfTests()
56 public static void runBasicRemoveIfTestsUnordered(Supplier<Collection<Integer>> supp) { in runBasicRemoveIfTestsUnordered() argument
57 Collection<Integer> integers = supp.get(); in runBasicRemoveIfTestsUnordered()
75 public static void runRemoveIfOnEmpty(Supplier<Collection<Integer>> supp) { in runRemoveIfOnEmpty() argument
76 supp.get().removeIf(x -> { in runRemoveIfOnEmpty()
82 public static void testRemoveIfNPE(Supplier<Collection<Integer>> supp) { in testRemoveIfNPE() argument
84 supp.get().removeIf(null); in testRemoveIfNPE()
89 public static void testRemoveIfCME(Supplier<Collection<Integer>> supp) { in testRemoveIfCME() argument
90 Collection<Integer> c = supp.get(); in testRemoveIfCME()
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DSequentialOpTest.java70 Supplier<Stream<Integer>> supp = suppliers[i]; in testLazy() local
75 Stream<Integer> stream = config.apply(supp.get()); in testLazy()
86 stream = config.apply(supp.get()); in testLazy()