Searched refs:destPath (Results 1 – 3 of 3) sorted by relevance
34 private final String destPath; field in JavacBuildStep37 public JavacBuildStep(String destPath, String classPath) { in JavacBuildStep() argument38 super(new File(destPath)); in JavacBuildStep()39 this.destPath = destPath; in JavacBuildStep()58 File destFile = new File(destPath); in build()76 new File(destPath))); in build()104 return destPath.equals(other.destPath) in equals()113 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
49 File destPath = new File(otherAppObbPath); in testSetDestinationUri_otherAppObbDir() local50 destPath.mkdirs(); in testSetDestinationUri_otherAppObbDir()52 File destFile = new File(destPath, "test.obb"); in testSetDestinationUri_otherAppObbDir()
388 …private File copyTestFile(String sourceFilename, File destPath, String destFilename) throws IOExce… in copyTestFile() argument390 File dest = new File(destPath != null ? destPath : source.getParentFile(), destFilename); in copyTestFile()