Home
last modified time | relevance | path

Searched refs:relPath (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/build/
DFileDownloadCache.java87 FilePair(String relPath, File file) { in FilePair() argument
88 mRelPath = relPath; in FilePair()
172 StringBuffer relPath = new StringBuffer(); in addFiles() local
174 relPath.append(pathSeg); in addFiles()
175 relPath.append(REL_PATH_SEPARATOR); in addFiles()
177 relPath.append(childFile.getName()); in addFiles()
178 cacheEntryList.add(new FilePair(relPath.toString(), childFile)); in addFiles()
/tools/treble/hacksaw/workspace/
Dcopier.go133 relPath, err := filepath.Rel(codebaseDir, sourcePath)
137 destPath := filepath.Join(workspaceDir, relPath)
/tools/tradefederation/core/javatests/com/android/tradefed/util/testmapping/
DTestMappingTest.java353 Path relPath = testMappingsRootPath.relativize(Paths.get(subDir.getAbsolutePath())); in testGetAllTestMappingPaths_FromChildDirectory() local
354 testMappingRelativePaths.add(relPath.toString()); in testGetAllTestMappingPaths_FromChildDirectory()
383 Path relPath = testMappingsRootPath.relativize(Paths.get(srcDir.getAbsolutePath())); in testGetAllTestMappingPaths_FromParentDirectory() local
384 testMappingRelativePaths.add(relPath.toString()); in testGetAllTestMappingPaths_FromParentDirectory()
406 Path relPath = testMappingsRootPath.relativize(Paths.get(srcDir.getAbsolutePath())); in testGetAllTestMappingPaths_NoFilesFound() local
407 testMappingRelativePaths.add(relPath.toString()); in testGetAllTestMappingPaths_NoFilesFound()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterLogSaver.java205 Path relPath = dir.toPath().relativize(p); in findTestContextFile() local
206 Matcher matcher = pattern.matcher(relPath.toString()); in findTestContextFile()