Home
last modified time | relevance | path

Searched refs:get (Results 1 – 25 of 518) sorted by relevance

12345678910>>...21

/cts/common/host-side/util/tests/src/com/android/compatibility/common/util/
DDynamicConfigHandlerTest.java101 assertEquals("override-config-val-1", configMap.get("override-config-1").get(0)); in testDynamicConfigHandler()
102 assertTrue(configMap.get("override-config-list-1") in testDynamicConfigHandler()
104 assertTrue(configMap.get("override-config-list-1") in testDynamicConfigHandler()
106 assertTrue(configMap.get("override-config-list-3").size() == 0); in testDynamicConfigHandler()
108 assertEquals("test config 1", configMap.get("test-config-1").get(0)); in testDynamicConfigHandler()
109 assertTrue(configMap.get("config-list").contains("config2")); in testDynamicConfigHandler()
111 assertEquals("override-config-val-2", configMap.get("override-config-2").get(0)); in testDynamicConfigHandler()
112 assertEquals(1, configMap.get("override-config-list-2").size()); in testDynamicConfigHandler()
113 assertTrue(configMap.get("override-config-list-2") in testDynamicConfigHandler()
/cts/suite/audio_quality/lib/src/task/
DTaskProcess.cpp41 if (mSp.get() == NULL) { in run()
64 if (ptrs.get() == NULL) { in prepareParams()
69 bzero(ptrs.get(), N * sizeof(void_ptr)); in prepareParams()
71 if (values.get() == NULL) { in prepareParams()
76 if (buffers.get() == NULL) { in prepareParams()
81 void_ptr* voidPtrs = ptrs.get(); in prepareParams()
82 UniqueValue* valuesPtr = values.get(); in prepareParams()
83 UniqueBuffer* buffersPtr = buffers.get(); in prepareParams()
96 if (buffer.get() == NULL) { in prepareParams()
101 *(buffer.get()) = getTestCase()->findBuffer(list[i].getParamString()); in prepareParams()
[all …]
/cts/tests/tests/util/src/android/util/cts/
DPropertyTest.java37 assertEquals(RAW_FLOAT_PROP.get(this), getFloatProp()); in testProperty()
38 assertEquals(RAW_POINT_PROP.get(this), getPointProp()); in testProperty()
41 assertEquals(RAW_FLOAT_PROP.get(this), mFloatValue); in testProperty()
44 assertEquals(RAW_POINT_PROP.get(this), testPointValue); in testProperty()
51 assertEquals(FLOAT_PROP.get(this), getFloatProp()); in testFloatProperty()
54 assertEquals(FLOAT_PROP.get(this), testFloatValue); in testFloatProperty()
61 assertEquals(INT_PROP.get(this).intValue(), getIntProp()); in testIntProperty()
64 assertEquals(INT_PROP.get(this).intValue(), testIntValue); in testIntProperty()
104 public Point get(PropertyTest object) {
117 public Float get(PropertyTest object) {
[all …]
DEventLogTest.java46 assertEquals(ANSWER_TAG, events.get(0).getTag()); in testWriteEvent()
47 assertEquals(12345, events.get(0).getData()); in testWriteEvent()
48 assertEquals(23456L, events.get(1).getData()); in testWriteEvent()
49 assertEquals(42.4242f, events.get(2).getData()); in testWriteEvent()
50 assertEquals("Test", events.get(3).getData()); in testWriteEvent()
52 Object[] arr = (Object[]) events.get(4).getData(); in testWriteEvent()
83 String val0 = (String) events.get(0).getData(); in testWriteEventWithOversizeValue()
87 Object[] arr1 = (Object[]) events.get(1).getData(); in testWriteEventWithOversizeValue()
93 Object[] arr2 = (Object[]) events.get(2).getData(); in testWriteEventWithOversizeValue()
99 Object[] arr3 = (Object[]) events.get(3).getData(); in testWriteEventWithOversizeValue()
[all …]
DSparseLongArrayTest.java45 assertEquals(i, sparseArray.get(KEYS[i])); in testSparseArrayWithDefaultCapacity()
56 assertEquals(oldValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity()
59 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity()
63 sparseArray.get(NON_EXISTED_KEY, VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
64 assertEquals(0L, sparseArray.get(NON_EXISTED_KEY)); // the default value is 0 in testSparseArrayWithDefaultCapacity()
75 assertEquals(VALUES[1], sparseArray.get(KEYS[1])); in testSparseArrayWithDefaultCapacity()
79 sparseArray.get(KEYS[1], VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
83 assertEquals(VALUES[2], sparseArray.get(KEYS[2])); in testSparseArrayWithDefaultCapacity()
87 sparseArray.get(KEYS[2], VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
106 assertEquals(VALUES[i], sparseArray.get(KEYS[i])); in testSparseArrayWithSpecifiedCapacity()
[all …]
DSparseIntArrayTest.java46 assertEquals(VALUES[i], sparseIntArray.get(KEYS[i])); in testSparseIntArrayWithDefaultCapacity()
57 assertEquals(oldValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithDefaultCapacity()
60 assertEquals(newValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithDefaultCapacity()
64 sparseIntArray.get(NON_EXISTED_KEY, VALUE_FOR_NON_EXISTED_KEY)); in testSparseIntArrayWithDefaultCapacity()
65 assertEquals(0, sparseIntArray.get(NON_EXISTED_KEY)); // the default value is 0 in testSparseIntArrayWithDefaultCapacity()
75 assertEquals(VALUES[1], sparseIntArray.get(KEYS[1])); in testSparseIntArrayWithDefaultCapacity()
79 sparseIntArray.get(KEYS[1], VALUE_FOR_NON_EXISTED_KEY)); in testSparseIntArrayWithDefaultCapacity()
95 assertEquals(VALUES[i], sparseIntArray.get(KEYS[i])); in testSparseIntArrayWithSpecifiedCapacity()
105 assertEquals(oldValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithSpecifiedCapacity()
108 assertEquals(newValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithSpecifiedCapacity()
[all …]
DSparseArrayTest.java41 assertEquals(new Integer(i), sparseArray.get(KEYS[i])); in testSparseArrayWithDefaultCapacity()
52 assertEquals(oldValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity()
55 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity()
59 sparseArray.get(NON_EXISTED_KEY, VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
60 assertNull(sparseArray.get(NON_EXISTED_KEY)); // the default value is null in testSparseArrayWithDefaultCapacity()
75 assertEquals(VALUES[1], sparseArray.get(KEYS[1])); in testSparseArrayWithDefaultCapacity()
79 sparseArray.get(KEYS[1], VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
83 assertEquals(VALUES[2], sparseArray.get(KEYS[2])); in testSparseArrayWithDefaultCapacity()
87 sparseArray.get(KEYS[2], VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
106 assertEquals(VALUES[i], sparseArray.get(KEYS[i])); in testSparseArrayWithSpecifiedCapacity()
[all …]
DLongSparseArrayTest.java45 assertEquals(new Integer(i), sparseArray.get(KEYS[i])); in testSparseArrayWithDefaultCapacity()
56 assertEquals(oldValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity()
59 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity()
63 sparseArray.get(NON_EXISTED_KEY, VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
64 assertNull(sparseArray.get(NON_EXISTED_KEY)); // the default value is null in testSparseArrayWithDefaultCapacity()
79 assertEquals(VALUES[1], sparseArray.get(KEYS[1])); in testSparseArrayWithDefaultCapacity()
83 sparseArray.get(KEYS[1], VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
87 assertEquals(VALUES[2], sparseArray.get(KEYS[2])); in testSparseArrayWithDefaultCapacity()
91 sparseArray.get(KEYS[2], VALUE_FOR_NON_EXISTED_KEY)); in testSparseArrayWithDefaultCapacity()
110 assertEquals(VALUES[i], sparseArray.get(KEYS[i])); in testSparseArrayWithSpecifiedCapacity()
[all …]
DSparseBooleanArrayTest.java44 assertEquals(VALUES[i], sparseBooleanArray.get(KEYS[i])); in testSparseBooleanArrayWithDefaultCapacity()
61 assertEquals(oldValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithDefaultCapacity()
64 assertEquals(newValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithDefaultCapacity()
68 sparseBooleanArray.get(NON_EXISTED_KEY, VALUE_FOR_NON_EXISTED_KEY)); in testSparseBooleanArrayWithDefaultCapacity()
69 assertEquals(false, sparseBooleanArray.get(NON_EXISTED_KEY)); // the default value is false in testSparseBooleanArrayWithDefaultCapacity()
80 assertEquals(VALUES[1], sparseBooleanArray.get(KEYS[1])); in testSparseBooleanArrayWithDefaultCapacity()
84 sparseBooleanArray.get(KEYS[1], VALUE_FOR_NON_EXISTED_KEY)); in testSparseBooleanArrayWithDefaultCapacity()
100 assertEquals(VALUES[i], sparseBooleanArray.get(KEYS[i])); in testSparseBooleanArrayWithSpecifiedCapacity()
117 assertEquals(oldValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithSpecifiedCapacity()
120 assertEquals(newValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithSpecifiedCapacity()
[all …]
/cts/tests/tests/view/src/android/view/cts/
DKeyboardShortcutGroupTest.java76 assertEquals("Additional item", group.getItems().get(newSize - 1).getLabel()); in testAddItem()
89 assertEquals(TEST_ITEMS.get(0).getLabel(), result.getItems().get(0).getLabel()); in testWriteToParcelAndRead()
90 assertEquals(TEST_ITEMS.get(1).getLabel(), result.getItems().get(1).getLabel()); in testWriteToParcelAndRead()
91 assertEquals(TEST_ITEMS.get(0).getKeycode(), result.getItems().get(0).getKeycode()); in testWriteToParcelAndRead()
92 assertEquals(TEST_ITEMS.get(1).getKeycode(), result.getItems().get(1).getKeycode()); in testWriteToParcelAndRead()
93 assertEquals(TEST_ITEMS.get(0).getModifiers(), result.getItems().get(0).getModifiers()); in testWriteToParcelAndRead()
94 assertEquals(TEST_ITEMS.get(1).getModifiers(), result.getItems().get(1).getModifiers()); in testWriteToParcelAndRead()
/cts/
DOldCtsBuild.mk19 define cts-get-lib-paths
23 define cts-get-ui-lib-paths
27 define cts-get-native-paths
31 define cts-get-package-paths
35 define cts-get-test-xmls
39 define cts-get-executable-paths
43 define cts-get-deqp-test-xmls
DOldCtsTestCaseList.mk313 CTS_TEST_CASES := $(call cts-get-lib-paths,$(cts_host_libraries)) \
314 $(call cts-get-package-paths,$(cts_test_packages)) \
315 $(call cts-get-ui-lib-paths,$(cts_device_jars)) \
316 $(call cts-get-ui-lib-paths,$(cts_target_junit_tests)) \
317 $(call cts-get-executable-paths,$(cts_device_executables)) \
318 $(call cts-get-native-paths,$(cts_native_tests),32)
321 CTS_TEST_CASES += $(call cts-get-native-paths,$(cts_native_tests),64)
326 CTS_TEST_XMLS := $(call cts-get-test-xmls,$(cts_host_libraries)) \
327 $(call cts-get-test-xmls,$(cts_test_packages)) \
328 $(call cts-get-test-xmls,$(cts_native_tests)) \
[all …]
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
DJitterVerificationTest.java78 assertEquals(1, deltaValues.get(0).longValue()); in testCalculateDelta()
79 assertEquals(1, deltaValues.get(1).longValue()); in testCalculateDelta()
80 assertEquals(1, deltaValues.get(2).longValue()); in testCalculateDelta()
81 assertEquals(1, deltaValues.get(3).longValue()); in testCalculateDelta()
87 assertEquals(0, deltaValues.get(0).longValue()); in testCalculateDelta()
88 assertEquals(2, deltaValues.get(1).longValue()); in testCalculateDelta()
89 assertEquals(2, deltaValues.get(2).longValue()); in testCalculateDelta()
90 assertEquals(0, deltaValues.get(3).longValue()); in testCalculateDelta()
96 assertEquals(1, deltaValues.get(0).longValue()); in testCalculateDelta()
97 assertEquals(3, deltaValues.get(1).longValue()); in testCalculateDelta()
[all …]
DJitterVerification.java81 int thresholdPercent = DEFAULTS.get(sensorType, -1); in getDefault()
119 (double)(percentileValues.get(1) - percentileValues.get(0)) / mThresholdNs; in verify()
122 (double)(percentileValues.get(1) - percentileValues.get(0)) / in verify()
136 percentileValues.get(0), percentileValues.get(1), in verify()
137 percentileValues.get(1) - percentileValues.get(0), in verify()
165 deltas.add(mTimestamps.get(i) - mTimestamps.get(i - 1)); in getDeltaValues()
/cts/tests/tests/view/src/android/view/animation/cts/
DAnimationSetTest.java79 assertEquals(SHORT_CHILD_DURATION, children.get(0).getDuration()); in testInitialize()
80 assertEquals(MEDIUM_CHILD_DURATION, children.get(1).getDuration()); in testInitialize()
81 assertEquals(LONG_CHILD_DURATION, children.get(2).getDuration()); in testInitialize()
88 assertEquals(ANIMATIONSET_DURATION, children.get(0).getDuration()); in testInitialize()
89 assertEquals(ANIMATIONSET_DURATION, children.get(1).getDuration()); in testInitialize()
90 assertEquals(ANIMATIONSET_DURATION, children.get(2).getDuration()); in testInitialize()
116 children.get(0).setFillAfter(true); in testSetFillAfter()
117 children.get(1).setFillAfter(false); in testSetFillAfter()
124 assertTrue(children.get(i).getFillAfter()); in testSetFillAfter()
133 children.get(0).setFillBefore(true); in testSetFillBefore()
[all …]
/cts/tests/app/src/android/app/cts/
DActivityKeyboardShortcutsTest.java56 assertEquals(1, data.get(0).getItems().size()); in testOnProvideKeyboardShortcuts()
58 data.get(0).getItems().get(0).getLabel()); in testOnProvideKeyboardShortcuts()
60 data.get(0).getItems().get(0).getBaseCharacter()); in testOnProvideKeyboardShortcuts()
61 assertEquals(KeyEvent.META_CTRL_ON, data.get(0).getItems().get(0).getModifiers()); in testOnProvideKeyboardShortcuts()
/cts/tests/tests/tv/src/android/media/tv/cts/
DTvTrackInfoTest.java45 assertEquals(bundle.get("testTrue"), info.getExtra().get("testTrue")); in testAudioTrackInfoOp()
58 assertEquals(bundle.get("testTrue"), infoFromParcel.getExtra().get("testTrue")); in testAudioTrackInfoOp()
86 assertEquals(bundle.get("testTrue"), info.getExtra().get("testTrue")); in testVideoTrackInfoOp()
102 assertEquals(bundle.get("testTrue"), infoFromParcel.getExtra().get("testTrue")); in testVideoTrackInfoOp()
120 assertEquals(bundle.get("testTrue"), info.getExtra().get("testTrue")); in testSubtitleTrackInfoOp()
131 assertEquals(bundle.get("testTrue"), infoFromParcel.getExtra().get("testTrue")); in testSubtitleTrackInfoOp()
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/
DSensorStatsTest.java57 assertEquals(0, (int) (Integer) flattened.get("value0")); in testFlatten()
58 assertEquals(1, (int) (Integer) flattened.get("value1")); in testFlatten()
59 assertEquals(2, (int) (Integer) flattened.get("stats0__value2")); in testFlatten()
60 assertEquals(3, (int) (Integer) flattened.get("stats0__value3")); in testFlatten()
61 assertEquals(4, (int) (Integer) flattened.get("stats0__stats1__value4")); in testFlatten()
62 assertEquals(5, (int) (Integer) flattened.get("stats0__stats1__value5")); in testFlatten()
/cts/tests/camera/src/android/hardware/camera2/cts/
DBurstCaptureRawTest.java235 long resultExposure = result.get(CaptureResult.SENSOR_EXPOSURE_TIME); in execute()
236 int resultSensitivity = result.get(CaptureResult.SENSOR_SENSITIVITY); in execute()
237 long desiredExposure = rawRequestList.get(i).get( in execute()
239 int desiredSensitivity = rawRequestList.get(i).get( in execute()
310 long resultExposure = result.get(CaptureResult.SENSOR_EXPOSURE_TIME); in execute()
311 int resultSensitivity = result.get(CaptureResult.SENSOR_SENSITIVITY); in execute()
312 int resultEdgeMode = result.get(CaptureResult.EDGE_MODE); in execute()
313 int resultNoiseReductionMode = result.get( in execute()
315 long desiredExposure = rawRequestList.get(i).get( in execute()
317 int desiredSensitivity = rawRequestList.get(i).get( in execute()
[all …]
DBurstCaptureTest.java84 final Size previewSize = mOrderedPreviewSizes.get(0); in yuvBurstTestByCamera()
88 cameraId, mCameraManager, ImageFormat.YUV_420_888, /*bound*/null).get(0); in yuvBurstTestByCamera()
91 final int maxPipelineDepth = mStaticInfo.getCharacteristics().get( in yuvBurstTestByCamera()
93 final int maxSyncLatency = mStaticInfo.getCharacteristics().get( in yuvBurstTestByCamera()
97 StreamConfigurationMap config = mStaticInfo.getCharacteristics().get( in yuvBurstTestByCamera()
172 int aeState = result.get(CaptureResult.CONTROL_AE_STATE); in yuvBurstTestByCamera()
173 int awbState = result.get(CaptureResult.CONTROL_AWB_STATE); in yuvBurstTestByCamera()
202 int afState = result.get(CaptureResult.CONTROL_AF_STATE); in yuvBurstTestByCamera()
232 int pipelineDepth = lockedResult.get(CaptureResult.REQUEST_PIPELINE_DEPTH); in yuvBurstTestByCamera()
273 burstExposure = lockedResult.get(CaptureResult.SENSOR_EXPOSURE_TIME); in yuvBurstTestByCamera()
[all …]
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/build/
DCompatibilityBuildHelper.java116 return mBuildInfo.getBuildAttributes().get(RETRY_COMMAND_LINE_ARGS); in getCommandLineArgs()
120 return mBuildInfo.getBuildAttributes().get(COMMAND_LINE_ARGS); in getCommandLineArgs()
125 return mBuildInfo.getBuildAttributes().get(SUITE_BUILD); in getSuiteBuild()
129 return mBuildInfo.getBuildAttributes().get(SUITE_NAME); in getSuiteName()
133 return mBuildInfo.getBuildAttributes().get(SUITE_FULL_NAME); in getSuiteFullName()
137 return mBuildInfo.getBuildAttributes().get(SUITE_VERSION); in getSuiteVersion()
141 return mBuildInfo.getBuildAttributes().get(SUITE_PLAN); in getSuitePlan()
145 return mBuildInfo.getBuildAttributes().get(DYNAMIC_CONFIG_OVERRIDE_URL); in getDynamicConfigUrl()
149 return Long.parseLong(mBuildInfo.getBuildAttributes().get(START_TIME_MS)); in getStartTime()
165 new File(mBuildInfo.getBuildAttributes().get(key))); in getDynamicConfigFiles()
[all …]
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityGestureDispatchTest.java113 MotionEvent clickDown = mMotionEvents.get(0); in testClickAt_producesDownThenUp()
114 MotionEvent clickUp = mMotionEvents.get(1); in testClickAt_producesDownThenUp()
153 MotionEvent clickDown = mMotionEvents.get(0); in testLongClickAt_producesEventsWithLongClickTiming()
154 MotionEvent clickUp = mMotionEvents.get(1); in testLongClickAt_producesEventsWithLongClickTiming()
191 MotionEvent downEvent = mMotionEvents.get(0); in testSwipe_shouldContainPointsInALine()
196 MotionEvent upEvent = mMotionEvents.get(numEvents - 1); in testSwipe_shouldContainPointsInALine()
204 MotionEvent moveEvent = mMotionEvents.get(i); in testSwipe_shouldContainPointsInALine()
239 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvents.get(0).getActionMasked()); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
240 assertEquals(MotionEvent.ACTION_MOVE, mMotionEvents.get(1).getActionMasked()); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
241 assertEquals(MotionEvent.ACTION_MOVE, mMotionEvents.get(2).getActionMasked()); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVXCheckAnalyzer.java244 min_yaw_offset = vrecs.get(0).yaw - srecs2.get(0).yaw; in processDataSet()
590 double tp = srec.get(0).time; in calcSensorPeriodStat()
596 dt = srec.get(i).time - tp; in calcSensorPeriodStat()
640 if (ra.get(i).time != rb.get(i).time) { in calcMaxErr()
646 diff = ra.get(i).roll - rb.get(i).roll; // they always opposite of each other.. in calcMaxErr()
649 diff = ra.get(i).pitch - rb.get(i).pitch; in calcMaxErr()
652 diff = Math.abs(((4*Math.PI + ra.get(i).yaw - rb.get(i).yaw)%(2*Math.PI)) in calcMaxErr()
688 if (ra.get(i).time != rb.get(i).time) { in calcSqrErr()
695 diff = ra.get(i).roll - rb.get(i).roll; in calcSqrErr()
698 diff = ra.get(i).pitch - rb.get(i).pitch; in calcSqrErr()
[all …]
/cts/tests/tests/os/src/android/os/cts/
DDebugTest.java285 String gc_count = map.get("art.gc.gc-count"); in testGetRuntimeStats()
286 String gc_time = map.get("art.gc.gc-time"); in testGetRuntimeStats()
287 String bytes_allocated = map.get("art.gc.bytes-allocated"); in testGetRuntimeStats()
288 String bytes_freed = map.get("art.gc.bytes-freed"); in testGetRuntimeStats()
289 String blocking_gc_count = map.get("art.gc.blocking-gc-count"); in testGetRuntimeStats()
290 String blocking_gc_time = map.get("art.gc.blocking-gc-time"); in testGetRuntimeStats()
291 String gc_count_rate_histogram = map.get("art.gc.gc-count-rate-histogram"); in testGetRuntimeStats()
293 map.get("art.gc.blocking-gc-count-rate-histogram"); in testGetRuntimeStats()
333 String summary_java_heap = map.get("summary.java-heap"); in testGetMemoryStats()
334 String summary_native_heap = map.get("summary.native-heap"); in testGetMemoryStats()
[all …]
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DTestPackageRepo.java134 mTestMap.get(abi).put(name, def); in parseModuleTestConfigs()
179 if (mTestMap.containsKey(abi) && mTestMap.get(abi).containsKey(name)) { in getTestPackage()
180 return mTestMap.get(abi).get(name); in getTestPackage()
192 Map<String, TestPackageDef> testNameMap = mTestMap.get(abi); in getPackageIds()
209 Map<String, TestPackageDef> testNameMap = mTestMap.get(abi); in getPackageNames()
228 Map<String, TestPackageDef> testNameMap = mTestMap.get(abi); in getTestPackageDefsByName()
233 packageDefMap.get(packageName).add(testNameMap.get(packageName)); in getTestPackageDefsByName()
246 for (String name : mTestMap.get(abi).keySet()) { in findPackageIdsForTest()
247 if (mTestMap.get(abi).get(name).isKnownTestClass(testClassName)) { in findPackageIdsForTest()

12345678910>>...21