Home
last modified time | relevance | path

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

/libcore/tools/upstream/src/main/java/libcore/
DRepository.java76 protected final Path rootPath; field in Repository
80 protected Repository(Path rootPath, String name, List<String> sourceDirs) { in Repository() argument
81 this.rootPath = Objects.requireNonNull(rootPath); in Repository()
84 if (!rootPath.toFile().isDirectory()) { in Repository()
85 throw new IllegalArgumentException("Missing or not a directory: " + rootPath); in Repository()
97 return p == null ? null : rootPath.resolve(p).toAbsolutePath(); in absolutePath()
104 File file = rootPath.resolve(repositoryRelativePath).toFile(); in pathFromRepository()
112 public final Path rootPath() { in rootPath() method in Repository
113 return rootPath; in rootPath()
118 return rootPath.hashCode(); in hashCode()
[all …]