Searched refs:classProviders (Results 1 – 2 of 2) sorted by relevance
54 @Nonnull private List<ClassProvider> classProviders; field in ClassPath66 public ClassPath(ClassProvider... classProviders) throws IOException { in ClassPath() argument67 this(Arrays.asList(classProviders), false, NOT_ART); in ClassPath()76 public ClassPath(Iterable<ClassProvider> classProviders) throws IOException { in ClassPath() argument77 this(classProviders, false, NOT_ART); in ClassPath()89 …public ClassPath(@Nonnull Iterable<? extends ClassProvider> classProviders, boolean checkPackagePr… in ClassPath() argument107 this.classProviders = Lists.newArrayList(classProviders); in ClassPath()108 this.classProviders.add(getBasicClasses()); in ClassPath()149 for (ClassProvider provider: classProviders) { in getClassDef()
25 final List<ClassProvider> classProviders = Lists.newArrayList(); field in PathEntryLoader28 return classProviders; in getClassProviders()37 return classProviders; in getResolvedClassProviders()62 classProviders.add(new DexClassProvider(container.getEntry(entryName))); in loadEntry()