Home
last modified time | relevance | path

Searched refs:anInterface (Results 1 – 5 of 5) sorted by relevance

/external/dagger2/javatests/dagger/functional/subcomponent/
DGrandchildModule.java40 static NeedsAnInterface provideNeedsAnInterface(AnInterface anInterface) {
41 return new NeedsAnInterface(anInterface);
DNeedsAnInterface.java20 NeedsAnInterface(@SuppressWarnings("unused") AnInterface anInterface) {} in NeedsAnInterface() argument
/external/desugar/java/com/google/devtools/build/android/desugar/
DDefaultMethodClassFixer.java326 for (String anInterface : interfaces) { in collectOrderedCompanionsToTriggerInterfaceClinit()
328 anInterface, visitedInterfaces, companionCollector); in collectOrderedCompanionsToTriggerInterfaceClinit()
334 String anInterface, in collectOrderedCompanionsToTriggerInterfaceClinit() argument
337 if (!visitedInterfaces.add(anInterface)) { in collectOrderedCompanionsToTriggerInterfaceClinit()
340 ClassReader bytecode = classpath.readIfKnown(anInterface); in collectOrderedCompanionsToTriggerInterfaceClinit()
341 if (bytecode == null || bootclasspath.isKnown(anInterface)) { in collectOrderedCompanionsToTriggerInterfaceClinit()
358 companionCollector.add(InterfaceDesugaring.getCompanionClassName(anInterface)); in collectOrderedCompanionsToTriggerInterfaceClinit()
/external/javassist/src/main/javassist/
DCtClass.java763 public void addInterface(CtClass anInterface) { in addInterface() argument
DCtClassType.java856 public void addInterface(CtClass anInterface) { in addInterface() argument
858 if (anInterface != null) in addInterface()
859 getClassFile2().addInterface(anInterface.getName()); in addInterface()