Searched refs:destPath (Results 1 – 3 of 3) sorted by relevance
28 private final String destPath; field in JavacBuildStep31 public JavacBuildStep(String destPath, String classPath) { in JavacBuildStep() argument32 this.destPath = destPath; in JavacBuildStep()51 File destFile = new File(destPath); in build()62 commandLine[3] = destPath; in build()79 return destPath.equals(other.destPath) in equals()88 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
31 private final String destPath; field in JackBuildStep35 public JackBuildStep(String destPath, String classPath) { in JackBuildStep() argument36 this.destPath = destPath; in JackBuildStep()52 File outDir = new File(destPath).getParentFile(); in build()64 commandLine.add(destPath); in build()83 return destPath.equals(other.destPath) && classPath.equals(other.classPath) in equals()91 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
43 private static String destPath = null; field in Main115 String dest_dir = destPath; in assemble()212 destPath = args[i]; in main()