Home
last modified time | relevance | path

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

/tools/asuite/atest/bazel/runner/src/com/android/tradefed/testtype/bazel/
DLogPathUpdatingListener.java80 Path relativePath = originalPath; in findNewArtifactPath() local
81 while (!relativePath.startsWith(mDelimiter) in findNewArtifactPath()
82 && relativePath.getNameCount() > mDelimiter.getNameCount()) { in findNewArtifactPath()
83 relativePath = relativePath.subpath(1, relativePath.getNameCount()); in findNewArtifactPath()
86 if (!relativePath.startsWith(mDelimiter)) { in findNewArtifactPath()
94 return mNewRoot.resolve(relativePath).toAbsolutePath().toString(); in findNewArtifactPath()
/tools/tradefederation/core/javatests/com/android/tradefed/build/
DFileDownloadCacheTest.java399 for (String relativePath : relativePaths) { in assertFetchRemoteFile()
400 File file = Paths.get(fileCopy.getAbsolutePath(), relativePath).toFile(); in assertFetchRemoteFile()
430 for (String relativePath : relativePaths) { in setDownloadExpectations()
432 Paths.get(fileArg.getAbsolutePath(), relativePath) in setDownloadExpectations()
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestMapping.java118 String relativePath = testMappingsDir.relativize(path.getParent()).toString(); in getTestCollection() local
164 if (!isMatchedFilePatterns(relativePath, matchedPatternPaths, filePatterns)) { in getTestCollection()
170 relativePath, in getTestCollection()
248 Path relativePath = in isMatchedFilePatterns() local
250 matchedPatternPathsInSource.add(relativePath.toString()); in isMatchedFilePatterns()
/tools/tradefederation/core/src/com/android/tradefed/result/
DFileSystemLogSaver.java277 String relativePath = filePath.substring(reportPath.length()); in getUrl() local
284 return String.format("%s%s", url, relativePath.replace(File.separator, "/")); in getUrl()