Searched refs:sourcePath (Results 1 - 19 of 19) sorted by relevance

/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DStratumLineInfo.java34 private final String sourcePath; field in class:StratumLineInfo
37 String sourceName, String sourcePath) {
41 this.sourcePath = sourcePath;
60 if (sourcePath == null) {
63 return sourcePath;
36 StratumLineInfo(String stratumID, int lineNumber, String sourceName, String sourcePath) argument
H A DSDE.java45 String sourcePath; // do not read - use accessor field in class:SDE.FileTableRecord
49 * Return the sourcePath, computing it if not set.
50 * If set, convert '/' in the sourcePath to the
55 if (sourcePath == null) {
56 sourcePath = refType.baseSourceDir() + sourceName;
59 for (int i = 0; i < sourcePath.length(); ++i) {
60 char ch = sourcePath.charAt(i);
67 sourcePath = sb.toString();
71 return sourcePath;
130 * Default sourcePath (th
162 private String sourcePath = null; field in class:SDE.LineStratum
220 String sourcePath() { method in class:SDE.LineStratum
444 storeFile(int fileId, String sourceName, String sourcePath) argument
[all...]
H A DLocationImpl.java156 lineStratum.sourcePath());
191 public String sourcePath() throws AbsentInformationException { method in class:LocationImpl
192 return sourcePath(vm.getDefaultStratum());
195 public String sourcePath(String stratumID) method in class:LocationImpl
197 return sourcePath(declaringType.stratum(stratumID));
200 String sourcePath(SDE.Stratum stratum) method in class:LocationImpl
H A DConcreteMethodImpl.java323 lineStratum.sourcePath()));
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DPackage.java44 ClassPath sourcePath; field in class:Package
67 public Package(ClassPath sourcePath, argument
73 this.sourcePath = sourcePath;
99 if (sourcePath != binaryPath) {
101 dir = sourcePath.getDirectory(pkg);
114 || sourcePath.getFiles(prefix, ".java").hasMoreElements();
137 return sourcePath.getFile(makeName(fileName));
142 return sourcePath.getFile(makeName(fileName));
148 return sourcePath
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DLocation.java66 * ({@link #sourceName()}, {@link #sourcePath()} and
165 * <code>sourcePath(vm.getDefaultStratum())</code> -
166 * see {@link #sourcePath(String)}
174 String sourcePath() throws AbsentInformationException; method in interface:Location
208 String sourcePath(String stratum) throws AbsentInformationException; method in interface:Location
/openjdk10/jdk/test/com/sun/jdi/sde/
H A DTemperatureTableTest.java58 String sourcePath = loc.sourcePath();
59 if (sourcePath.equals(expectedSourcePath)) {
60 println(label + " sourcePath: " + sourcePath);
63 " expected sourcePath " + expectedSourcePath +
64 " got - " + sourcePath);
91 String sourcePath = loc.sourcePath(stratum);
92 if (sourcePath
[all...]
H A DMangleTest.java59 String sourcePath = loc.sourcePath();
60 if (sourcePath.equals(expectedSourcePath)) {
61 println(label + " sourcePath: " + sourcePath);
64 " expected sourcePath " + expectedSourcePath +
65 " got - " + sourcePath);
92 String sourcePath = loc.sourcePath(stratum);
93 if (sourcePath
[all...]
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java142 final String sourcePath = asWin32Path(source);
182 CopyFileEx(sourcePath, targetPath, flags,
200 CopyFileEx(sourcePath, targetPath, flags, 0L);
284 final String sourcePath = asWin32Path(source);
290 MoveFileEx(sourcePath, targetPath, MOVEFILE_REPLACE_EXISTING);
380 MoveFileEx(sourcePath, targetPath, 0);
390 MoveFileEx(sourcePath, targetPath, MOVEFILE_COPY_ALLOWED);
442 RemoveDirectory(sourcePath);
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DBatchEnvironment.java54 protected ClassPath sourcePath; field in class:BatchEnvironment
138 public BatchEnvironment(ClassPath sourcePath, argument
140 this(System.out, sourcePath, binaryPath);
143 ClassPath sourcePath,
145 this(out, sourcePath, binaryPath, (ErrorConsumer) null);
148 ClassPath sourcePath,
152 this.sourcePath = sourcePath;
173 ClassPath sourcePath;
199 sourcePath
142 BatchEnvironment(OutputStream out, ClassPath sourcePath, ClassPath binaryPath) argument
147 BatchEnvironment(OutputStream out, ClassPath sourcePath, ClassPath binaryPath, ErrorConsumer errorConsumer) argument
[all...]
H A DMain.java469 env.sourcePath.toString(),
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DSDE.c57 String sourcePath; // do not read - use accessor member in struct:__anon1342
503 private void storeFile(int fileId, String sourceName, String sourcePath) { argument
507 fileTable[fileIndex].sourcePath = sourcePath;
515 String sourcePath = null; local
525 sourcePath = readLine();
527 storeFile(fileId, sourceName, sourcePath);
/openjdk10/langtools/test/tools/javac/processing/errors/StopOnInapplicableAnnotations/
H A DProcessor.java65 List<File> sourcePath = new ArrayList<>();
67 sourcePath.add(new File(sourcePaths));
70 for (File sp : sourcePath) {
/openjdk10/langtools/test/tools/javac/warnings/suppress/
H A DVerifySuppressWarnings.java68 List<File> sourcePath = new ArrayList<>();
70 sourcePath.add(new File(sourcePaths));
73 for (File sp : sourcePath) {
/openjdk10/langtools/test/tools/javac/4241573/
H A DT4241573.java58 String sourcePath = createPath(absJar, relJar, absDir, relDir);
63 "-sourcepath", sourcePath,
/openjdk10/langtools/test/tools/javac/modules/
H A DCompileModulePatchTest.java334 Path sourcePath = base.resolve("source-path");
335 tb.writeJavaFiles(sourcePath, "package src; public class Src {}");
375 .options("--patch-module", "m=" + sourcePath.toString(),
377 "--source-path", sourcePath.toString(),
383 .files(findJavaFiles(sourcePath))
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DGroupLayout.java1177 Set<Spring> sourcePath = tmpParallelSet;
1178 sourcePath.clear();
1181 sourcePath.add(spring);
1186 if (sourcePath.contains(spring)) {
1187 sourcePath.clear();
1198 sourcePath.clear();
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DClassFinder.java643 for (Path sourcePath : fm.getLocationAsPaths(SOURCE_PATH)) {
644 path = path.prepend(sourcePath);
/openjdk10/jdk/test/tools/jar/modularJar/
H A DBasic.java939 Path sourcePath = TEST_SRC.resolve("src").resolve(mn);
941 javac(build, mp, sourceList(sourcePath));

Completed in 424 milliseconds