Searched refs:listLocationsForModules (Results 1 - 12 of 12) sorted by relevance

/openjdk9/langtools/test/tools/javac/file/
H A DModuleAndPackageLocations.java74 assertLocations(fm.listLocationsForModules(StandardLocation.MODULE_SOURCE_PATH),
78 assertLocations(fm.listLocationsForModules(StandardLocation.MODULE_PATH),
83 assertLocations(fm.listLocationsForModules(StandardLocation.SOURCE_OUTPUT),
89 assertLocations(fm.listLocationsForModules(StandardLocation.SOURCE_OUTPUT),
123 assertRefused(() -> fm.listLocationsForModules(StandardLocation.SOURCE_PATH));
/openjdk9/langtools/src/java.compiler/share/classes/javax/tools/
H A DForwardingJavaFileManager.java204 public Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in class:ForwardingJavaFileManager
205 return fileManager.listLocationsForModules(location);
H A DJavaFileManager.java133 * {@link JavaFileManager#listLocationsForModules}.
565 default Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in interface:JavaFileManager
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DMemoryFileManager.java558 public Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in class:MemoryFileManager
559 return stdFileManager.listLocationsForModules(location);
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DLocations.java493 * @see JavaFileManager#listLocationsForModules
495 Iterable<Set<Location>> listLocationsForModules() throws IOException { method in class:Locations.LocationHandler
643 Iterable<Set<Location>> listLocationsForModules() throws IOException { method in class:Locations.OutputLocationHandler
1121 Iterable<Set<Location>> listLocationsForModules() { method in class:Locations.ModulePathLocationHandler
1180 for (Set<Location> set : listLocationsForModules()) {
1708 Iterable<Set<Location>> listLocationsForModules() { method in class:Locations.ModuleSourcePathLocationHandler
1821 Iterable<Set<Location>> listLocationsForModules() throws IOException { method in class:Locations.SystemModulesLocationHandler
1959 Iterable<Set<Location>> listLocationsForModules() throws IOException { method in class:Locations.PatchModulesLocationHandler
2065 Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in class:Locations
2067 return (h == null ? null : h.listLocationsForModules());
[all...]
H A DJavacFileManager.java1016 public Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in class:JavacFileManager
1018 return locations.listLocationsForModules(location);
/openjdk9/nashorn/src/jdk.scripting.nashorn.shell/share/classes/jdk/nashorn/tools/jjs/
H A DPackagesHelper.java166 for (Set<Location> locs : fm.listLocationsForModules(StandardLocation.MODULE_PATH)) {
/openjdk9/langtools/test/tools/javac/modules/
H A DPatchModulesTest.java132 StreamSupport.stream(fm.listLocationsForModules(StandardLocation.PATCH_MODULE_PATH)
/openjdk9/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java422 public Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in class:TestClientCodeWrapper.UserFileManager
423 throwUserExceptionIfNeeded(fileManagerMethod, "listLocationsForModules");
424 return super.listLocationsForModules(location);
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DModuleFinder.java135 innerIter = fileManager.listLocationsForModules(outer).iterator();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java395 public Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException { method in class:ClientCodeWrapper.WrappedJavaFileManager
397 return clientJavaFileManager.listLocationsForModules(location);
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DJavapTask.java917 for (Set<Location> set: fileManager.listLocationsForModules(segment)) {

Completed in 222 milliseconds