Searched refs:libraryClasses (Results 1 – 5 of 5) sorted by relevance
38 private LibraryClassCollection libraryClasses; field in DexApplication56 LibraryClassCollection libraryClasses, in DexApplication() argument65 this.libraryClasses = libraryClasses; in DexApplication()95 public List<DexLibraryClass> libraryClasses() { in libraryClasses() method in DexApplication120 if (libraryClasses != null) { in forceLoadAllClasses()121 libraryClasses.forceLoad(type -> !loaded.containsKey(type)); in forceLoadAllClasses()122 libraryClasses.getAllClasses().forEach(clazz -> loaded.putIfAbsent(clazz.type, clazz)); in forceLoadAllClasses()133 if (clazz == null && libraryClasses != null) { in definitionFor()134 clazz = libraryClasses.get(type); in definitionFor()145 return "Application (" + programClasses + "; " + classpathClasses + "; " + libraryClasses + ")"; in toString()[all …]
64 public Iterable<DexLibraryClass> libraryClasses() { in libraryClasses() method in AppInfo65 return app.libraryClasses(); in libraryClasses()
170 private final Queue<DexLibraryClass> libraryClasses = new ConcurrentLinkedQueue<>(); field in ApplicationReader.ClassReader217 readDexSources(inputApp.getDexLibraryResources(), LIBRARY, libraryClasses); in readSources() local220 readClassSources(inputApp.getClassLibraryResources(), LIBRARY, libraryClasses); in readSources() local261 libraryClasses, inputApp.getLibraryResourceProviders(), application); in initializeLazyClassCollection()
228 for (DexLibraryClass clazz : application.libraryClasses()) { in run()
725 appInfo.libraryClasses().forEach(this::markAllVirtualMethodsReachable); in traceApplication()