Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DAsmAnalyzerTest.java68 Map<String, InputStream> filesFound = new TreeMap<>(); in testParseZip() local
70 mAa.parseZip(mOsJarPath, map, filesFound); in testParseZip()
93 filesFound.keySet().toArray()); in testParseZip()
100 Map<String, InputStream> filesFound = new TreeMap<>(); in testFindClass() local
102 mAa.parseZip(mOsJarPath, zipClasses, filesFound); in testFindClass()
119 Map<String, InputStream> filesFound = new TreeMap<>(); in testFindGlobs() local
121 mAa.parseZip(mOsJarPath, zipClasses, filesFound); in testFindGlobs()
182 Map<String, InputStream> filesFound = new TreeMap<>(); in testFindClassesDerivingFrom() local
184 mAa.parseZip(mOsJarPath, zipClasses, filesFound); in testFindClassesDerivingFrom()
208 Map<String, InputStream> filesFound = new TreeMap<>(); in testDependencyVisitor() local
[all …]
DAsmGeneratorTest.java245 Map<String, InputStream> filesFound = new TreeMap<>(); in testClassRefactoring() local
246 parseZip(mOsDestJar, output, filesFound); in testClassRefactoring()
255 filesFound.keySet().toArray()); in testClassRefactoring()
333 Map<String, InputStream> filesFound = new TreeMap<>(); in testClassExclusion() local
334 parseZip(mOsDestJar, output, filesFound); in testClassExclusion()
339 filesFound.keySet().toArray()); in testClassExclusion()
416 Map<String, InputStream> filesFound = new TreeMap<>(); in testMethodInjection() local
417 parseZip(mOsDestJar, output, filesFound); in testMethodInjection()
455 Map<String, InputStream> filesFound) throws IOException { in parseZip() argument
467 filesFound.put(entry.getName(), zip.getInputStream(entry)); in parseZip()
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DAsmAnalyzer.java100 Map<String, InputStream> filesFound = new TreeMap<>(); in analyze() local
102 parseZip(mOsSourceJar, zipClasses, filesFound); in analyze()
112 mGen.setCopyFiles(filesFound); in analyze()
127 Map<String, InputStream> filesFound) throws IOException { in parseZip() argument
128 if (classes == null || filesFound == null) { in parseZip()
150 filesFound.put(entry.getName(), zip.getInputStream(entry)); in parseZip()