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

/openjdk10/langtools/src/java.compiler/share/classes/javax/tools/
H A DForwardingJavaFileManager.java172 public Location getLocationForModule(Location location, String moduleName) throws IOException { method in class:ForwardingJavaFileManager
173 return fileManager.getLocationForModule(location, moduleName);
180 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:ForwardingJavaFileManager
181 return fileManager.getLocationForModule(location, fo);
H A DJavaFileManager.java132 * using methods like {@link JavaFileManager#getLocationForModule} or
478 default Location getLocationForModule(Location location, String moduleName) throws IOException { method in interface:JavaFileManager
502 default Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in interface:JavaFileManager
532 * {@code getLocationForModule} or {@code listModuleLocations}.
583 * getLocationForModule(location, <i>moduleName</i>)
/openjdk10/langtools/test/tools/javac/modules/
H A DGetLocationForModuleTest.java77 JavaFileManager.Location modLocn = fm.getLocationForModule(locn, mod);
H A DModuleSourcePathTest.java515 Location locn1 = fm.getLocationForModule(StandardLocation.MODULE_SOURCE_PATH, "m1x");
517 Location locn2 = fm.getLocationForModule(StandardLocation.MODULE_SOURCE_PATH, "m2x");
/openjdk10/langtools/test/tools/javac/file/
H A DModuleAndPackageLocations.java87 fm.getLocationForModule(StandardLocation.SOURCE_OUTPUT, "c");
99 Location cOutput = fm.getLocationForModule(StandardLocation.SOURCE_OUTPUT, "c");
102 Location cOutput2 = fm.getLocationForModule(StandardLocation.SOURCE_OUTPUT, testFO);
118 assertRefused(() -> fm.getLocationForModule(StandardLocation.SOURCE_PATH, "test"));
H A DSetLocationForModule.java106 Location m = fm.getLocationForModule(locn, "m");
140 Location m = fm.getLocationForModule(locn, "m");
175 Location m = fm.getLocationForModule(locn, "m");
205 Location m = fm.getLocationForModule(locn, "m");
238 Location m = fm.getLocationForModule(locn, "m");
254 Location javaCompiler = fm.getLocationForModule(locn, "java.compiler");
276 // getLocationForModule
/openjdk10/test/lib/jdk/test/lib/compiler/
H A DInMemoryJavaCompiler.java142 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:InMemoryJavaCompiler.FileManagerWrapper
146 return super.getLocationForModule(location, fo);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DMemoryFileManager.java543 public Location getLocationForModule(Location location, String moduleName) throws IOException { method in class:MemoryFileManager
544 return stdFileManager.getLocationForModule(location, moduleName);
548 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:MemoryFileManager
549 return stdFileManager.getLocationForModule(location, fo);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DLocations.java472 * @see JavaFileManager#getLocationForModule(Location, String)
474 Location getLocationForModule(String moduleName) throws IOException { method in class:Locations.LocationHandler
479 * @see JavaFileManager#getLocationForModule(Location, JavaFileObject, String)
481 Location getLocationForModule(Path file) throws IOException { method in class:Locations.LocationHandler
604 Location getLocationForModule(String name) { method in class:Locations.OutputLocationHandler
636 Location getLocationForModule(Path file) { method in class:Locations.OutputLocationHandler
647 getLocationForModule(p.getFileName().toString());
1109 public Location getLocationForModule(String moduleName) { method in class:Locations.ModulePathLocationHandler
1115 public Location getLocationForModule(Path file) { method in class:Locations.ModulePathLocationHandler
1698 Location getLocationForModule(Strin method in class:Locations.ModuleSourcePathLocationHandler
1703 Location getLocationForModule(Path file) { method in class:Locations.ModuleSourcePathLocationHandler
1809 Location getLocationForModule(String name) throws IOException { method in class:Locations.SystemModulesLocationHandler
1815 Location getLocationForModule(Path file) throws IOException { method in class:Locations.SystemModulesLocationHandler
1949 Location getLocationForModule(String name) throws IOException { method in class:Locations.PatchModulesLocationHandler
1954 Location getLocationForModule(Path file) throws IOException { method in class:Locations.PatchModulesLocationHandler
2036 Location getLocationForModule(Location location, String name) throws IOException { method in class:Locations
2041 Location getLocationForModule(Location location, Path file) throws IOException { method in class:Locations
[all...]
H A DJavacFileManager.java967 public Location getLocationForModule(Location location, String moduleName) throws IOException { method in class:JavacFileManager
972 return locations.getLocationForModule(location, moduleName);
993 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:JavacFileManager
999 return locations.getLocationForModule(location, p);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DModuleFinder.java250 msym.patchLocation = fileManager.getLocationForModule(StandardLocation.PATCH_MODULE_PATH, name.toString());
303 fileManager.getLocationForModule(StandardLocation.PATCH_MODULE_PATH,
309 fileManager.getLocationForModule(StandardLocation.CLASS_OUTPUT,
317 fileManager.getLocationForModule(StandardLocation.CLASS_OUTPUT,
/openjdk10/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java65 "close", "getJavaFileForInput", "getLocationForModule", "getServiceLoader", "contains")) {
404 public Location getLocationForModule(Location location, String moduleName) throws IOException { method in class:TestClientCodeWrapper.UserFileManager
405 throwUserExceptionIfNeeded(fileManagerMethod, "getLocationForModule");
406 return super.getLocationForModule(location, moduleName);
410 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:TestClientCodeWrapper.UserFileManager
411 throwUserExceptionIfNeeded(fileManagerMethod, "getLocationForModule");
412 return super.getLocationForModule(location, fo);
/openjdk10/langtools/test/tools/javac/T8003967/
H A DDetectMutableStaticFields.java176 fm.getLocationForModule(StandardLocation.SYSTEM_MODULES, moduleName);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/
H A DSmartFileManager.java207 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:SmartFileManager
208 return super.getLocationForModule(location, locUnwrap(fo));
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java362 public Location getLocationForModule(Location location, String moduleName) throws IOException { method in class:ClientCodeWrapper.WrappedJavaFileManager
364 return clientJavaFileManager.getLocationForModule(location, moduleName);
373 public Location getLocationForModule(Location location, JavaFileObject fo) throws IOException { method in class:ClientCodeWrapper.WrappedJavaFileManager
375 return clientJavaFileManager.getLocationForModule(location, unwrap(fo));
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/
H A DJavacFiler.java493 loc = this.fileManager.getLocationForModule(loc, mod.name.toString());
616 fileManager.getLocationForModule(location, msym.name.toString());
646 Location moduleLoc = fileManager.getLocationForModule(location, module);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DModules.java360 fileManager.getLocationForModule(StandardLocation.PATCH_MODULE_PATH,
401 msym.patchLocation = fileManager.getLocationForModule(
405 Location outputLocn = fileManager.getLocationForModule(
472 defaultModule.patchLocation = fileManager.getLocationForModule(
563 fileManager.getLocationForModule(StandardLocation.PATCH_MODULE_PATH, fo);
596 fileManager.getLocationForModule(StandardLocation.MODULE_SOURCE_PATH, fo);
601 fileManager.getLocationForModule(sourceOutput, fo);
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DJavadocTool.java395 return fm.getLocationForModule(location, msym.name.toString());
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/main/
H A DArguments.java440 Location sourceLoc = fm.getLocationForModule(StandardLocation.MODULE_SOURCE_PATH, module);
444 Location classLoc = fm.getLocationForModule(StandardLocation.CLASS_OUTPUT, module);
/openjdk10/langtools/src/jdk.compiler/share/classes/jdk/internal/shellsupport/doc/
H A DJavadocHelper.java688 public Location getLocationForModule(Location location, method in class:JavadocHelper.OnDemandJavadocHelper.PatchModuleFileManager
692 : super.getLocationForModule(location, fo);
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/
H A DWorkArounds.java326 public Location getLocationForModule(ModuleElement mdle) { method in class:WorkArounds
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DJNIWriter.java182 outLocn = fileManager.getLocationForModule(StandardLocation.NATIVE_HEADER_OUTPUT, msym.name.toString());
H A DClassWriter.java1668 outLocn = fileManager.getLocationForModule(CLASS_OUTPUT, msym.name.toString());
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DUtils.java309 copyDirectory(getLocationForModule(mdle), dir);
361 return getLocationForModule(mdle);
364 protected Location getLocationForModule(ModuleElement mdle) { method in class:Utils
365 Location loc = configuration.workArounds.getLocationForModule(mdle);
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/
H A DElementsTable.java917 return fm.getLocationForModule(location, msymName);

Completed in 153 milliseconds