Home
last modified time | relevance | path

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

/external/r8/src/test/java/com/android/tools/r8/
DTestCondition.java23 static class CompilerSet { class in TestCondition
27 public CompilerSet(EnumSet<CompilerUnderTest> set) { in CompilerSet() method in TestCondition.CompilerSet
50 public static final CompilerSet D8_COMPILER = compilers(CompilerUnderTest.D8);
54 public static final CompilerSet R8_COMPILER =
56 public static final CompilerSet R8_AFTER_D8_COMPILER = compilers(CompilerUnderTest.R8_AFTER_D8);
57 public static final CompilerSet R8_NOT_AFTER_D8_COMPILER = compilers(CompilerUnderTest.R8);
65 private static final CompilerSet ANY_COMPILER =
66 new CompilerSet(EnumSet.allOf(CompilerUnderTest.class));
92 public static CompilerSet compilers(CompilerUnderTest... compilers) { in compilers()
94 return new CompilerSet(EnumSet.copyOf(Arrays.asList(compilers))); in compilers()
[all …]