Home
last modified time | relevance | path

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

/tools/test/graphicsbenchmark/performance_tests/helper/test/com/android/game/qualification/
DGameCoreConfigurationXmlParserTest.java67 ApkInfo apk = config.getApkInfo().get(0); in testSingleApkInfo()
97 List<ApkInfo> apks = parser.parse(input).getApkInfo(); in testOptionalFields()
99 ApkInfo apk = apks.get(0); in testOptionalFields()
156 List<ApkInfo> apks = parser.parse(input).getApkInfo(); in testApkWithArguments()
158 ApkInfo apk = apks.get(0); in testApkWithArguments()
162 List<ApkInfo.Argument> args = apk.getArgs(); in testApkWithArguments()
165 assertEquals(ApkInfo.Argument.Type.STRING, args.get(0).getType()); in testApkWithArguments()
168 assertEquals(ApkInfo.Argument.Type.INT, args.get(1).getType()); in testApkWithArguments()
/tools/test/graphicsbenchmark/performance_tests/deviceside/src/com/android/game/qualification/device/
DGameQualificationTest.java30 import com.android.game.qualification.ApkInfo;
58 List<ApkInfo> apks = parser.parse(new File(ApkInfo.APK_LIST_LOCATION)).getApkInfo(); in data()
59 for (ApkInfo apk : apks) { in data()
70 public ApkInfo mApk;
80 private void startApp(ApkInfo apk) throws IntentFilter.MalformedMimeTypeException, IOException { in startApp()
95 for (ApkInfo.Argument argument : mApk.getArgs()) { in startApp()
/tools/test/graphicsbenchmark/performance_tests/helper/src/com/android/game/qualification/
DGameCoreConfigurationXmlParser.java103 List<ApkInfo> apkInfo = in parse()
138 private ApkInfo createApkInfo(Element element) { in createApkInfo()
146 List<ApkInfo.Argument> args = parseList(element, Field.ARGS.getTag(), this::createArgument); in createApkInfo()
151 return new ApkInfo( in createApkInfo()
165 private ApkInfo.Argument createArgument(Element element) { in createArgument()
170 return new ApkInfo.Argument( in createArgument()
173 ApkInfo.Argument.Type.valueOf(type.toUpperCase(Locale.US))); in createArgument()
DGameCoreConfiguration.java26 List<ApkInfo> mApkInfo;
30 List<ApkInfo> apkInfo) { in GameCoreConfiguration()
51 .map(ApkInfo::getName) in validateConfiguration()
71 public List<ApkInfo> getApkInfo() { in getApkInfo()
DApkInfo.java23 public class ApkInfo { class
72 public ApkInfo( in ApkInfo() method in ApkInfo
/tools/test/graphicsbenchmark/performance_tests/hostside/test/com/android/game/qualification/metric/
DGameQualificationFpsCollectorTest.java23 import com.android.game.qualification.ApkInfo;
36 private static final ApkInfo APK = new ApkInfo(
93 ApkInfo apk = new ApkInfo( in regexPattern()
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/testtype/
DGameQualificationHostsideController.java19 import com.android.game.qualification.ApkInfo;
78 private List<ApkInfo> mApks = null;
197 List<ApkInfo> apkInfo = new ArrayList<>(); in split()
240 getDevice().pushFile(mApkInfoFile, ApkInfo.APK_LIST_LOCATION); in run()
245 for (ApkInfo apk : mApks) { in run()
313 try(InputStream inputStream = ApkInfo.class.getResourceAsStream(resource)) { in initApkList()
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/
DBaseGameQualificationMetricCollector.java20 import com.android.game.qualification.ApkInfo;
34 private ApkInfo mTestApk;
48 protected ApkInfo getApkInfo() { in getApkInfo()
52 public void setApkInfo(ApkInfo apk) { in setApkInfo()
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/test/
DPerformanceTest.java24 import com.android.game.qualification.ApkInfo;
65 private ApkInfo mApk;
110 ApkInfo apk, in PerformanceTest()