Searched defs:sourcePath (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DStratumLineInfo.java33 private final String sourcePath; field in class:StratumLineInfo
36 String sourceName, String sourcePath) {
40 this.sourcePath = sourcePath;
61 if (sourcePath == null) {
64 return sourcePath;
35 StratumLineInfo(String stratumID, int lineNumber, String sourceName, String sourcePath) argument
H A DLocationImpl.java155 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 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 = buf.toString();
71 return sourcePath;
129 * Default sourcePath (th
161 private String sourcePath = null; field in class:SDE.LineStratum
214 String sourcePath() { method in class:SDE.LineStratum
438 storeFile(int fileId, String sourceName, String sourcePath) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocation.java64 * ({@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
209 String sourcePath(String stratum) method in interface:Location
/openjdk7/jdk/src/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;
62 if (sourcePath == null) {
65 return sourcePath;
36 StratumLineInfo(String stratumID, int lineNumber, String sourceName, String sourcePath) argument
H A DLocationImpl.java158 lineStratum.sourcePath());
194 public String sourcePath() throws AbsentInformationException { method in class:LocationImpl
195 return sourcePath(vm.getDefaultStratum());
198 public String sourcePath(String stratumID) method in class:LocationImpl
200 return sourcePath(declaringType.stratum(stratumID));
203 String sourcePath(SDE.Stratum stratum) method in class:LocationImpl
H A DSDE.java46 String sourcePath; // do not read - use accessor field in class:SDE.FileTableRecord
50 * Return the sourcePath, computing it if not set.
51 * If set, convert '/' in the sourcePath to the
56 if (sourcePath == null) {
57 sourcePath = refType.baseSourceDir() + sourceName;
60 for (int i = 0; i < sourcePath.length(); ++i) {
61 char ch = sourcePath.charAt(i);
68 sourcePath = buf.toString();
72 return sourcePath;
130 * Default sourcePath (th
162 private String sourcePath = null; field in class:SDE.LineStratum
215 String sourcePath() { method in class:SDE.LineStratum
439 storeFile(int fileId, String sourceName, String sourcePath) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DSourcePath.java53 private File[] sourcePath; field in class:SourcePath
106 sourcePath = new File[tempPathIndex];
107 System.arraycopy((Object)tempPath, 0, (Object)sourcePath,
118 for (int i = 0; i < sourcePath.length; i++) {
119 File directoryNeeded = new File(sourcePath[i], name);
/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceManager.java54 private SearchPath sourcePath; field in class:SourceManager
71 public SourceManager(Environment env, SearchPath sourcePath) { argument
74 this.sourcePath = sourcePath;
82 sourcePath = sp;
109 return sourcePath;
134 File path = sourcePath.resolve(full);
H A DSourceTreeTool.java59 private SearchPath sourcePath; field in class:SourceTreeTool
74 sourcePath = sourceManager.getSourcePath();
127 sourcePath = sourceManager.getSourcePath();
185 String[] files = sourcePath.children(relativePath, filter);
192 File file = sourcePath.resolve(childName);
H A DThreadTreeTool.java66 private SearchPath sourcePath; field in class:ThreadTreeTool
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java182 public Collection<File> sourcePath() { method in class:Paths
455 Path sourcePath = getPathForLocation(SOURCE_PATH);
457 sourceSearchPath = sourcePath != null ? sourcePath : userClassPath;
484 Path sourcePath = getPathForLocation(SOURCE_PATH);
485 if (sourcePath == null)
490 otherSearchPath.addAll(sourcePath);
/openjdk7/jdk/src/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;
175 ClassPath sourcePath;
225 sourcePath
142 BatchEnvironment(OutputStream out, ClassPath sourcePath, ClassPath binaryPath) argument
147 BatchEnvironment(OutputStream out, ClassPath sourcePath, ClassPath binaryPath, ErrorConsumer errorConsumer) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DSDE.c53 String sourcePath; // do not read - use accessor member in struct:__anon499
496 private void storeFile(int fileId, String sourceName, String sourcePath) { argument
500 fileTable[fileIndex].sourcePath = sourcePath;
508 String sourcePath = null; local
518 sourcePath = readLine();
520 storeFile(fileId, sourceName, sourcePath);

Completed in 107 milliseconds