Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/params/
DInstantAppHandler.java59 Set<String> excludeAnnotations = new HashSet<>(filterTest.getExcludeAnnotations()); in applySetup() local
61 excludeAnnotations.remove(AppModeInstant.class.getCanonicalName()); in applySetup()
63 excludeAnnotations.add(AppModeFull.class.getCanonicalName()); in applySetup()
66 filterTest.addAllExcludeAnnotation(excludeAnnotations); in applySetup()
DSecondaryUserHandler.java59 Set<String> excludeAnnotations = new HashSet<>(filterTest.getExcludeAnnotations()); in applySetup() local
61 excludeAnnotations.add(SystemUserOnly.class.getCanonicalName()); in applySetup()
64 filterTest.addAllExcludeAnnotation(excludeAnnotations); in applySetup()
/tools/tradefederation/core/isolation/com/android/tradefed/isolation/
DIsolationFilter.java41 Collection<String> excludeAnnotations) { in IsolationFilter() argument
45 mExcludeAnnotations = new HashSet<String>(excludeAnnotations); in IsolationFilter()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DAndroidJUnitTest.java283 public void addAllExcludeAnnotation(Set<String> excludeAnnotations) { in addAllExcludeAnnotation() argument
284 mExcludeAnnotation.addAll(excludeAnnotations); in addAllExcludeAnnotation()
/tools/tradefederation/core/isolation/
Disolation_runner.proto58 repeated string excludeAnnotations = 4; field