Home
last modified time | relevance | path

Searched refs:destPath (Results 1 – 3 of 3) sorted by relevance

/cts/tools/vm-tests-tf/build/src/util/build/
DJavacBuildStep.java34 private final String destPath; field in JavacBuildStep
37 public JavacBuildStep(String destPath, String classPath) { in JavacBuildStep() argument
38 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()
/cts/tests/app/DownloadManagerInstallerTest/src/android/app/cts/
DDownloadManagerInstallerTest.java49 File destPath = new File(otherAppObbPath); in testSetDestinationUri_otherAppObbDir() local
50 destPath.mkdirs(); in testSetDestinationUri_otherAppObbDir()
52 File destFile = new File(destPath, "test.obb"); in testSetDestinationUri_otherAppObbDir()
/cts/hostsidetests/incrementalinstall/src/android/incrementalinstall/cts/
DIncrementalInstallTest.java388 …private File copyTestFile(String sourceFilename, File destPath, String destFilename) throws IOExce… in copyTestFile() argument
390 File dest = new File(destPath != null ? destPath : source.getParentFile(), destFilename); in copyTestFile()