Home
last modified time | relevance | path

Searched refs:neededAnnotation (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/isolation/com/android/tradefed/isolation/
DIsolationFilter.java107 Set<String> neededAnnotation = new HashSet<String>(); in checkIncludeAnnotations() local
108 neededAnnotation.addAll(mIncludeAnnotations); in checkIncludeAnnotations()
110 if (neededAnnotation.contains(a.annotationType().getName())) { in checkIncludeAnnotations()
111 neededAnnotation.remove(a.annotationType().getName()); in checkIncludeAnnotations()
114 if (!neededAnnotation.isEmpty()) { in checkIncludeAnnotations()
/tools/tradefederation/core/src/com/android/tradefed/util/
DTestFilterHelper.java197 Set<String> neededAnnotation = new HashSet<String>(); in isIncluded() local
198 neededAnnotation.addAll(mIncludeAnnotations); in isIncluded()
200 if (neededAnnotation.contains(a.annotationType().getName())) { in isIncluded()
201 neededAnnotation.remove(a.annotationType().getName()); in isIncluded()
204 if (neededAnnotation.size() != 0) { in isIncluded()