Home
last modified time | relevance | path

Searched refs:afters (Results 1 – 3 of 3) sorted by relevance

/platform_testing/libraries/health/runners/microbenchmark/src/android/platform/test/microbenchmark/
DFunctional.java136 List<FrameworkMethod> afters =
138 s = afters.isEmpty() ? s : new RunAfters(s, afters, target);
DMicrobenchmark.java416 List<FrameworkMethod> afters = in runChild() local
418 if (!afters.isEmpty()) { in runChild()
419 new RunAfters(EMPTY_STATEMENT, afters, test).evaluate(); in runChild()
/platform_testing/libraries/flicker/src/android/tools/flicker/junit/
DFlickerServiceDecorator.kt108 val afters = testClass.getAnnotatedMethods(After::class.java) in <lambda>() constant
109 afters.forEach { it.invokeExplosively(test) } in <lambda>()