Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/util/
DTestFilterHelper.java49 private Set<String> mExcludeAnnotations = new HashSet<>(); field in TestFilterHelper
59 mExcludeAnnotations.addAll(excludeAnnotation); in TestFilterHelper()
108 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
115 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
139 return mExcludeAnnotations; in getExcludeAnnotation()
147 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
181 if (!mExcludeAnnotations.isEmpty()) { in isExcluded()
183 if (mExcludeAnnotations.contains(a.annotationType().getName())) { in isExcluded()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostTest.java144 private Set<String> mExcludeAnnotations = new HashSet<>(); field in HostTest
201 mIncludeAnnotations, mExcludeAnnotations); in HostTest()
345 mFilterHelper.addAllExcludeAnnotation(mExcludeAnnotations); in countTestCases()
425 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
434 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
447 return mExcludeAnnotations; in getExcludeAnnotations()
460 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
510 mFilterHelper.addAllExcludeAnnotation(mExcludeAnnotations); in run()
844 mFilterHelper.addAllExcludeAnnotation(mExcludeAnnotations); in getTestMethods()
1197 mExcludeAnnotations); in applyFilters()
DIsolatedHostTest.java110 private Set<String> mExcludeAnnotations = new HashSet<>(); field in IsolatedHostTest
181 || !mExcludeAnnotations.isEmpty()) { in run()
187 .addAllExcludeAnnotations(mExcludeAnnotations)); in run()
492 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
504 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
516 return mExcludeAnnotations; in getExcludeAnnotations()
528 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
/tools/tradefederation/core/isolation/com/android/tradefed/isolation/
DIsolationFilter.java35 private Set<String> mExcludeAnnotations = new HashSet<>(); field in IsolationFilter
45 mExcludeAnnotations = new HashSet<String>(excludeAnnotations); in IsolationFilter()
113 if (!mExcludeAnnotations.isEmpty()) { in checkExcludeAnnotations()
115 if (mExcludeAnnotations.contains(a.annotationType().getName())) { in checkExcludeAnnotations()