Searched refs:findAll (Results 1 - 25 of 44) sorted by relevance

12

/openjdk10/jdk/src/java.base/share/classes/java/lang/module/
H A DModuleFinder.java67 * <p> The {@link #find(String) find} and {@link #findAll() findAll} methods
95 * of the set of modules returned by the {@link #findAll() findAll}
116 * that it locates. If {@link #findAll() findAll} is invoked several times
134 Set<ModuleReference> findAll(); method in interface:ModuleFinder
287 * Consequently, the {@code find} or {@code findAll} methods will only
308 public Set<ModuleReference> findAll() {
322 * found or all module finders have been searched. The {@link #findAll()
[all...]
H A DResolver.java223 for (ModuleReference mref : findAll()) {
309 findAll().forEach(mref -> {
840 private Set<ModuleReference> findAll() { method in class:Resolver
841 Set<ModuleReference> beforeModules = beforeFinder.findAll();
842 Set<ModuleReference> afterModules = afterFinder.findAll();
/openjdk10/jdk/test/java/lang/module/
H A DModuleFinderWithSecurityManager.java65 Set<ModuleReference> allModules = finder.findAll();
H A DModuleFinderTest.java70 Set<String> names = finder.findAll().stream()
85 assertTrue(finder.findAll().isEmpty());
99 assertTrue(finder.findAll().size() == 2);
121 assertTrue(finder.findAll().size() == 4);
146 assertTrue(finder.findAll().size() == 1);
162 assertTrue(finder.findAll().size() == 2);
181 assertTrue(finder.findAll().size() == 3);
201 assertTrue(finder.findAll().size() == 1);
216 assertTrue(finder.findAll().size() == 2);
253 assertTrue(finder.findAll()
[all...]
/openjdk10/jdk/test/tools/jlink/bindservices/src/m1/p1/
H A DMain.java35 Set<String> modules = ModuleFinder.ofSystem().findAll().stream()
/openjdk10/jdk/test/tools/jlink/basic/src/m1/p/
H A DListModules.java35 Set<String> modules = ModuleFinder.ofSystem().findAll()
/openjdk10/hotspot/test/runtime/modules/AccessCheck/
H A DModuleLibrary.java78 public Set<ModuleReference> findAll() { method in class:ModuleLibrary
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DDefaultRoots.java59 for (ModuleReference mref : systemModuleFinder.findAll()) {
H A DIllegalAccessMaps.java81 finder.findAll().stream()
H A DModuleBootstrap.java295 systemModuleFinder.findAll()
307 appModulePath.findAll()
428 Set<String> allSystem = ModuleFinder.ofSystem().findAll()
523 public Set<ModuleReference> findAll() {
992 this.mrefs = Collections.unmodifiableSet(finder.findAll());
1006 public Set<ModuleReference> findAll() { method in class:ModuleBootstrap.SafeModuleFinder
H A DSystemModuleFinders.java219 public Set<ModuleReference> findAll() {
220 PrivilegedAction<Set<ModuleReference>> pa = f::findAll;
296 public Set<ModuleReference> findAll() { method in class:SystemModuleFinders.SystemModuleFinder
/openjdk10/jdk/test/java/lang/ClassLoader/getResource/automaticmodules/
H A DDriver.java72 ModuleReference mref = finder.findAll().stream().findAny().orElse(null);
/openjdk10/jdk/test/lib/testlibrary/
H A DModuleUtils.java77 public Set<ModuleReference> findAll() {
/openjdk10/jdk/test/java/util/Scanner/
H A DScannerStreamTest.java116 * Tests that the matches produced by findAll(pat) are the same
133 () -> makeFileScanner(inputFile).findAll(pat).map(MatchResult::group);
163 * Tests findAll() using a pattern against an input string.
164 * The results from findAll() should equal the results obtained
168 * This primarily tests the auto-advance feature of findAll() that
171 * Without auto-advance, findAll() would return an infinite stream
188 Supplier<Stream<String>> ss = () -> new Scanner(input).findAll(pattern)
/openjdk10/jdk/test/tools/jlink/plugins/SystemModuleDescriptors/
H A DSystemModulesTest.java70 ModuleFinder.ofSystem().findAll().stream()
128 ModuleFinder.ofSystem().findAll()
/openjdk10/jdk/test/jdk/modules/etc/
H A DUpgradeableModules.java75 ModuleFinder.ofSystem().findAll().stream()
H A DJdkQualifiedExportTest.java54 ModuleFinder.ofSystem().findAll()
/openjdk10/langtools/test/tools/jdeprscan/tests/jdk/jdeprscan/
H A DTestNotFound.java84 long errCount = new Scanner(new String(errBytes, "UTF-8")).findAll("error:").count();
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/
H A DJdepsConfiguration.java111 systemModulePath.findAll().stream()
341 this.systemModules = ModuleFinder.ofSystem().findAll().stream()
425 public Set<ModuleReference> findAll() { method in class:JdepsConfiguration.SystemModuleFinder
575 otherModulePath.findAll().stream()
581 appModulePath.findAll().stream()
590 systemModulePath.findAll()
/openjdk10/hotspot/test/serviceability/jvmti/GetModulesInfo/
H A DJvmtiGetAllModulesTest.java127 public Set<ModuleReference> findAll() {
/openjdk10/jdk/test/java/lang/ModuleTests/
H A DWithSecurityManager.java118 public Set<ModuleReference> findAll() {
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DResourcePoolConfiguration.java116 public Set<ModuleReference> findAll() {
H A DJlinkTask.java359 finder.findAll()
512 public Set<ModuleReference> findAll() {
617 Set<ModuleReference> mrefs = finder.findAll();
637 Set<ModuleReference> mrefs = finder.findAll().stream()
646 finder.findAll().stream()
/openjdk10/jdk/test/java/lang/module/customfs/
H A DModulesInCustomFileSystem.java106 for (ModuleReference mref : finder.findAll()) {
/openjdk10/jdk/test/jdk/modules/incubator/
H A DDefaultImage.java173 return ModuleFinder.ofSystem().findAll().stream()

Completed in 699 milliseconds

12