Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/rootcomponentgenerator/
DRootComponentGeneratingStep.java94 SetMultimap<Class<? extends Annotation>, Element> elementsByAnnotation) { in process() argument
95 for (Element element : elementsByAnnotation.get(DialerRootComponent.class)) { in process()
99 if (shouldDeferRootComponent(elementsByAnnotation)) { in process()
100 return elementsByAnnotation.get(DialerRootComponent.class); in process()
109 SetMultimap<Class<? extends Annotation>, Element> elementsByAnnotation) { in shouldDeferRootComponent() argument
110 return elementsByAnnotation.containsKey(InstallIn.class) in shouldDeferRootComponent()
111 || elementsByAnnotation.containsKey(IncludeInDialerRoot.class); in shouldDeferRootComponent()
DMetadataGeneratingStep.java59 SetMultimap<Class<? extends Annotation>, Element> elementsByAnnotation) { in process() argument
61 for (Element element : elementsByAnnotation.get(IncludeInDialerRoot.class)) { in process()
64 for (Element element : elementsByAnnotation.get(InstallIn.class)) { in process()
DComponentGeneratingStep.java97 SetMultimap<Class<? extends Annotation>, Element> elementsByAnnotation) { in process() argument
98 for (TypeElement type : typesIn(elementsByAnnotation.get(IncludeInDialerRoot.class))) { in process()