Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/params/
DTestFilterable.java31 private Set<String> mExcludeAnnotations = new HashSet<>(); field in TestFilterable
41 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
46 return mExcludeAnnotations; in getExcludeAnnotations()
61 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
71 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
/tools/tradefederation/core/src/com/android/tradefed/util/
DTestFilterHelper.java52 private Set<String> mExcludeAnnotations = new HashSet<>(); field in TestFilterHelper
62 mExcludeAnnotations.addAll(excludeAnnotation); in TestFilterHelper()
111 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
118 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
142 return mExcludeAnnotations; in getExcludeAnnotation()
150 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
184 if (!mExcludeAnnotations.isEmpty()) { in isExcluded()
186 if (mExcludeAnnotations.contains(a.annotationType().getName())) { in isExcluded()
/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()
123 if (!mExcludeAnnotations.isEmpty()) { in checkExcludeAnnotations()
125 if (mExcludeAnnotations.contains(a.annotationType().getName())) { in checkExcludeAnnotations()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DIsolatedHostTest.java123 private Set<String> mExcludeAnnotations = new HashSet<>(); field in IsolatedHostTest
269 || !mExcludeAnnotations.isEmpty()) { in run()
275 .addAllExcludeAnnotations(mExcludeAnnotations)); in run()
983 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
995 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
1007 return mExcludeAnnotations; in getExcludeAnnotations()
1019 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
DHostTest.java154 private Set<String> mExcludeAnnotations = new HashSet<>(); field in HostTest
239 mIncludeFilters, mExcludeFilters, mIncludeAnnotations, mExcludeAnnotations); in HostTest()
383 mFilterHelper.addAllExcludeAnnotation(mExcludeAnnotations); in countTestCases()
465 mExcludeAnnotations.add(notAnnotation); in addExcludeAnnotation()
474 mExcludeAnnotations.addAll(notAnnotations); in addAllExcludeAnnotation()
487 return mExcludeAnnotations; in getExcludeAnnotations()
500 mExcludeAnnotations.clear(); in clearExcludeAnnotations()
554 mFilterHelper.addAllExcludeAnnotation(mExcludeAnnotations); in run()
903 mFilterHelper.addAllExcludeAnnotation(mExcludeAnnotations); in getTestMethods()
1266 mExcludeAnnotations); in applyFilters()