Home
last modified time | relevance | path

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

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DZipUtil.java67 public static void addToZip(ZipOutputStream out, File file, List<String> relativePathSegs) in addToZip() argument
69 relativePathSegs.add(file.getName()); in addToZip()
72 relativePathSegs.add("/"); in addToZip()
74 ZipEntry zipEntry = new ZipEntry(buildPath(relativePathSegs)); in addToZip()
88 addToZip(out, subFile, relativePathSegs); in addToZip()
91 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()
94 relativePathSegs.remove(relativePathSegs.size()-1); in addToZip()
103 private static String buildPath(List<String> relativePathSegs) { in buildPath() argument
105 for (String segment : relativePathSegs) { in buildPath()