Home
last modified time | relevance | path

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

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
DSourceZip.java49 private final Path zipPath; field in SourceZip
58 public SourceZip(Path zipPath) { in SourceZip() argument
59 this(zipPath, new ParserConfiguration()); in SourceZip()
69 public SourceZip(Path zipPath, ParserConfiguration configuration) { in SourceZip() argument
70 assertNotNull(zipPath); in SourceZip()
72 this.zipPath = zipPath.normalize(); in SourceZip()
74 Log.info("New source zip at \"%s\"", this.zipPath); in SourceZip()
86 Log.info("Parsing zip at \"%s\"", zipPath); in parse()
101 Log.info("Parsing zip at \"%s\"", zipPath); in parse()
103 try (ZipFile zipFile = new ZipFile(zipPath.toFile())) { in parse()
[all …]
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DCppAssetManager.java1699 static String8 getPathName(final String zipPath) { in getPathName() argument
1700 return new String8(zipPath); in getPathName()