Searched defs:filesFound (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java245 Map<String, InputStream> filesFound = new TreeMap<>();
246 parseZip(mOsDestJar, output, filesFound);
255 filesFound.keySet().toArray());
333 Map<String, InputStream> filesFound = new TreeMap<>();
334 parseZip(mOsDestJar, output, filesFound);
339 filesFound.keySet().toArray());
416 Map<String, InputStream> filesFound = new TreeMap<>();
417 parseZip(mOsDestJar, output, filesFound);
455 Map<String, InputStream> filesFound) throws IOException {
467 filesFound
453 parseZip(String jarPath, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java100 Map<String, InputStream> filesFound = new TreeMap<>();
102 parseZip(mOsSourceJar, zipClasses, filesFound);
112 mGen.setCopyFiles(filesFound);
119 * and all other files to <code>filesFound</code>.
123 * @param filesFound The map of file name => InputStream. The file name is
127 Map<String, InputStream> filesFound) throws IOException {
128 if (classes == null || filesFound == null) {
150 filesFound.put(entry.getName(), zip.getInputStream(entry));
126 parseZip(List<String> jarPathList, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument

Completed in 229 milliseconds