Home | History | Annotate | Download | only in dxconvext

Lines Matching full:path

42      * args[0] is the absolute path to the java src directory e.g.
45 * args[1] is the absolute path to the classes directory e.g.
48 * args[2] is the absolute path to the java source file, e.g.
74 // e.g. <out-path>/test/p1/MyTest.class
259 private static String fixPath(String path) {
261 * If the path separator is \ (like on windows), we convert the path to
262 * a standard '/' separated path.
265 path = path.replace('\\', '/');
268 int index = path.lastIndexOf("/./");
271 return path.substring(index + 3);
274 if (path.startsWith("./")) {
275 return path.substring(2);
278 return path;