Home
last modified time | relevance | path

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

/external/r8/src/test/java/com/android/tools/r8/
DTestCondition.java6 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
25 final EnumSet<CompilerUnderTest> set;
27 public CompilerSet(EnumSet<CompilerUnderTest> set) { in CompilerSet()
50 public static final CompilerSet D8_COMPILER = compilers(CompilerUnderTest.D8);
55 compilers(CompilerUnderTest.R8, CompilerUnderTest.R8_AFTER_D8);
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);
66 new CompilerSet(EnumSet.allOf(CompilerUnderTest.class));
72 private final EnumSet<CompilerUnderTest> compilers;
78 EnumSet<CompilerUnderTest> compilers, in TestCondition()
[all …]
DR8RunArtTestsTest.java72 public enum CompilerUnderTest { enum in R8RunArtTestsTest
564 compilers(CompilerUnderTest.R8, CompilerUnderTest.D8),
878 CompilerUnderTest compilerUnderTest, in collectTestsMatchingConditions()
892 CompilerUnderTest compilerUnderTest, CompilationMode compilationMode, DexVm version) { in getTestsMap()
989 private static CompilationMode defaultCompilationMode(CompilerUnderTest compilerUnderTest) { in defaultCompilationMode()
1040 runArtTest(ToolHelper.getDexVm(), CompilerUnderTest.R8); in runArtTest()
1043 protected void runArtTest(CompilerUnderTest compilerUnderTest) throws Throwable { in runArtTest()
1049 CompilerUnderTest compilerUnderTest, in executeCompilerUnderTest()
1058 CompilerUnderTest compilerUnderTest, in executeCompilerUnderTest()
1162 protected void runJctfTest(CompilerUnderTest compilerUnderTest, String classFilePath, in runJctfTest()
[all …]
DR8RunExamplesTest.java12 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
116 fullTestList.add(makeTest(DexTool.NONE, CompilerUnderTest.D8, CompilationMode.DEBUG, test)); in data()
117 fullTestList.add(makeTest(DexTool.NONE, CompilerUnderTest.R8, CompilationMode.RELEASE, test)); in data()
118 fullTestList.add(makeTest(DexTool.DX, CompilerUnderTest.R8, CompilationMode.RELEASE, test)); in data()
124 DexTool tool, CompilerUnderTest compiler, CompilationMode mode, String clazz) { in makeTest()
133 private final CompilerUnderTest compiler;
146 this.compiler = CompilerUnderTest.valueOf(compiler); in R8RunExamplesTest()
DJctfTestSpecifications.java15 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
4814 CompilerUnderTest compilerUnderTest, in testMatch()
4828 CompilerUnderTest compilerUnderTest, in getExpectedOutcome()
/external/r8/src/test/java/com/android/tools/r8/internal/
DD8GMSCoreV10DeployJarVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
20 CompilerUnderTest.D8, CompilationMode.DEBUG, in buildDebugFromDeployJar()
28 CompilerUnderTest.D8, CompilationMode.RELEASE, in buildReleaseFromDeployJar()
DD8GMSCoreV9DeployJarVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
20 CompilerUnderTest.D8, CompilationMode.DEBUG, in buildDebugFromDeployJar()
28 CompilerUnderTest.D8, CompilationMode.RELEASE, in buildReleaseFromDeployJar()
DYouTubeDexVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
20 CompilerUnderTest.R8, CompilationMode.DEBUG, BASE + APK, BASE + PG_MAP, null, BASE + APK); in buildDebugFromDex()
27 CompilerUnderTest.R8, CompilationMode.RELEASE, BASE + APK, BASE + PG_MAP, null, BASE + APK); in buildReleaseFromDex()
DD8YouTubeDeployJarVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
20 CompilerUnderTest.D8, CompilationMode.DEBUG, BASE + APK, null, null, BASE + DEPLOY_JAR); in buildDebugFromDeployJar()
27 CompilerUnderTest.D8, CompilationMode.RELEASE, BASE + APK, null, null, BASE + DEPLOY_JAR); in buildReleaseFromDeployJar()
DYouTubeDeployJarVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
20 CompilerUnderTest.R8, CompilationMode.DEBUG, BASE + APK, null, null, BASE + DEPLOY_JAR); in buildDebugFromDeployJar()
27 CompilerUnderTest.R8, CompilationMode.RELEASE, BASE + APK, null, null, BASE + DEPLOY_JAR); in buildReleaseFromDeployJar()
DYouTubeProguardJarVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
20CompilerUnderTest.R8, CompilationMode.DEBUG, BASE + APK, BASE + PG_MAP, null, BASE + PG_JAR); in buildDebugFromProguardJar()
27 CompilerUnderTest.R8, CompilationMode.RELEASE, in buildReleaseFromProguardJar()
DGMSCoreCompilationTestBase.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
36 runAndCheckVerification(CompilerUnderTest.R8, mode, version); in runR8AndCheckVerification()
40 CompilerUnderTest compiler, CompilationMode mode, String version) in runAndCheckVerification()
DCompilationTestBase.java12 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
40 CompilerUnderTest compiler, in runAndCheckVerification()
57 CompilerUnderTest compiler, in runAndCheckVerification()
66 if (compiler == CompilerUnderTest.R8) { in runAndCheckVerification()
82 assert compiler == CompilerUnderTest.D8; in runAndCheckVerification()
DR8GMSCoreV9DeployJarVerificationTest.java9 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
21 CompilerUnderTest.R8, CompilationMode.RELEASE, in buildFromDeployJar()
DR8GMSCoreV10DeployJarVerificationTest.java9 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
22 CompilerUnderTest.R8, CompilationMode.RELEASE, in buildFromDeployJar()
DGMSCoreDeployJarVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
16 CompilerUnderTest compiler, CompilationMode mode, String base, boolean hasReference) in buildFromDeployJar()
DD8PhotosVerificationTest.java8 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
21 CompilerUnderTest.D8, mode, version, null, null, version); in runD8AndCheckVerification()
DYouTubeTreeShakeJarVerificationTest.java10 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
28 CompilerUnderTest.R8, in buildAndTreeShakeFromDeployJar()
DR8GMSCoreTreeShakeJarVerificationTest.java10 import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
26 CompilerUnderTest.R8, in buildAndTreeShakeFromDeployJar()