Home
last modified time | relevance | path

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

/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
DModuleRepoTest.java457 List<IModuleDef> testList = new ArrayList<>(); in testGetshard_allSameRuntime() local
462 testList.add(mod1); in testGetshard_allSameRuntime()
467 testList.add(mod2); in testGetshard_allSameRuntime()
472 testList.add(mod3); in testGetshard_allSameRuntime()
477 testList.add(mod4); in testGetshard_allSameRuntime()
479 List<IModuleDef> res = mRepo.getShard(testList, 0, 1); in testGetshard_allSameRuntime()
481 res = mRepo.getShard(testList, 0, 2); in testGetshard_allSameRuntime()
485 res = mRepo.getShard(testList, 1, 2); in testGetshard_allSameRuntime()
497 List<IModuleDef> testList = new ArrayList<>(); in testGetShard_cannotSplitMore() local
502 testList.add(mod1); in testGetShard_cannotSplitMore()
[all …]
/test/mlts/benchmark/crashtest/src/com/android/nn/crashtest/
DMainActivity.java236 int[] testList; in startInferenceTest() local
238 testList = new int[mModelsAdapter.getCount()]; in startInferenceTest()
242 testList[i] = mAllTestModels.indexOf(modelName); in startInferenceTest()
245 testList = new int[]{mSelectedModelIndex.get()}; in startInferenceTest()
279 RunModelsInParallel.intentInitializer(testList, threadCount, in startInferenceTest()
/test/mlts/benchmark/dogfood/src/com/android/nn/dogfood/
DBenchmarkJobService.java142 List<TestModels.TestModelEntry> testList = TestModels.modelsList(); in randomModelList() local
146 int numModelsToSelect = Math.min(DOGFOOD_MODELS_PER_RUN, testList.size()); in randomModelList()
150 randomModelIndices[i] = random.nextInt(testList.size()); in randomModelList()
/test/mlts/benchmark/src/com/android/nn/benchmark/app/
DNNControls.java127 int testList[] = new int[count]; in btnRun() local
131 testList[count++] = i; in btnRun()
136 intent.putExtra(NNBenchmark.EXTRA_TESTS, testList); in btnRun()
/test/mlts/benchmark/src/com/android/nn/crashtest/app/
DNNParallelTestActivity.java92 final int[] testList = intent.getIntArrayExtra(EXTRA_TEST_LIST); in onResume() local
113 RunModelsInParallel.intentInitializer(testList, threadCount, in onResume()
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/
DRunModelsInParallel.java119 private Processor createSubTestRunner(final int[] testList, final int testIndex) { in createSubTestRunner() argument
133 }, testList); in createSubTestRunner()
/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DProcessor.java73 public Processor(Context context, Processor.Callback callback, int[] testList) { in Processor() argument
76 mTestList = testList; in Processor()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java122 private List<Test> testList; field in TestDataForDevServlet.TestReportDataObject
198 return "(" + testList + ")"; in toString()
395 trdObj.testList.forEach( in doPost()