Home
last modified time | relevance | path

Searched refs:annotatedElement (Results 1 – 4 of 4) sorted by relevance

/tools/platform-compat/java/android/processor/compat/
DSingleAnnotationProcessor.java91 for (Element annotatedElement : roundEnvironment.getElementsAnnotatedWith(annotation)) { in process()
93 getSupportedAnnotationMirror(annotation, annotatedElement); in process()
94 if (ignoreAnnotatedElement(annotatedElement, annotationMirror)) { in process()
98 PackageElement packageElement = elements.getPackageOf(annotatedElement); in process()
99 String enclosingElementName = getEnclosingElementName(annotatedElement); in process()
106 annotatedElements.get(packageElement, enclosingElementName).add(annotatedElement); in process()
/tools/platform-compat/java/android/processor/compat/unsupportedappusage/
DUnsupportedAppUsageProcessor.java89 for (Element annotatedElement : row.get(enclosingElementName)) { in process()
91 types, annotation, annotatedElement); in process()
94 annotatedElement); in process()
/tools/tradefederation/core/src/com/android/tradefed/util/
DTestFilterHelper.java156 public boolean shouldTestRun(AnnotatedElement annotatedElement) { in shouldTestRun() argument
157 return shouldTestRun(Arrays.asList(annotatedElement.getAnnotations())); in shouldTestRun()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostTest.java1147 protected boolean shouldTestRun(AnnotatedElement annotatedElement) { in shouldTestRun() argument
1148 return mFilterHelper.shouldTestRun(annotatedElement); in shouldTestRun()