Searched refs:filesFound (Results 1 – 2 of 2) sorted by relevance
/frameworks/layoutlib/create/tests/src/com/android/tools/layoutlib/create/ |
D | AsmAnalyzerTest.java | 64 Map<String, InputStream> filesFound = new TreeMap<>(); in testParseZip() local 66 getDefaultAnalyzer().parseZip(MOCK_ANDROID_JAR, map, filesFound); in testParseZip() 99 filesFound.keySet().toArray()); in testParseZip() 105 Map<String, InputStream> filesFound = new TreeMap<>(); in testFindClass() local 107 getDefaultAnalyzer().parseZip(MOCK_ANDROID_JAR, zipClasses, filesFound); in testFindClass() 155 Map<String, InputStream> filesFound = new TreeMap<>(); in testFindClassesDerivingFrom() local 157 getDefaultAnalyzer().parseZip(MOCK_ANDROID_JAR, zipClasses, filesFound); in testFindClassesDerivingFrom() 180 Map<String, InputStream> filesFound = new TreeMap<>(); in testDependencyVisitor() local 182 getDefaultAnalyzer().parseZip(MOCK_ANDROID_JAR, zipClasses, filesFound); in testDependencyVisitor()
|
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/ |
D | AsmAnalyzer.java | 68 Map<String, InputStream> filesFound, Set<String> replaceMethodCallClasses) { in Result() argument 71 mFilesFound = filesFound; in Result() 137 Map<String, InputStream> filesFound = new TreeMap<>(); in analyze() local 139 parseZip(mOsSourceJar, zipClasses, filesFound); in analyze() 172 return new Result(found, deps, filesFound, mReplaceMethodCallClasses); in analyze() 185 Map<String, InputStream> filesFound) throws IOException { in parseZip() argument 186 if (classes == null || filesFound == null) { in parseZip() 213 synchronized (filesFound) { in parseZip() 214 filesFound.put(entry.getName(), zip.getInputStream(entry)); in parseZip()
|