/cts/tests/tests/view/src/android/view/animation/cts/ |
D | TransformationTest.java | 48 final Transformation t2 = new Transformation(); in testCompose() local 50 t2.setAlpha(0.4f); in testCompose() 52 t2.getMatrix().setScale(3, 1); in testCompose() 54 t2.setTransformationType(Transformation.TYPE_ALPHA); in testCompose() 55 t2.compose(t1); in testCompose() 59 assertEquals(expectedMatrix, t2.getMatrix()); in testCompose() 60 assertEquals(0.4f * 0.5f, t2.getAlpha(), COMPARISON_DELTA); in testCompose() 61 assertEquals(Transformation.TYPE_ALPHA, t2.getTransformationType()); in testCompose() 64 t2.compose(t1); in testCompose() 67 assertEquals(expectedMatrix, t2.getMatrix()); in testCompose() [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/ |
D | Test_monitor_enter.java | 139 private T_monitor_enter_2 t2; field in TestRunnable2 141 TestRunnable2(T_monitor_enter_2 t2, int val) { in TestRunnable2() argument 142 this.t2 = t2; in TestRunnable2() 148 t2.run(val); in run()
|
/cts/tests/controls/src/android/controls/cts/ |
D | CtsControlsServiceTest.java | 409 private void assertToggleTemplate(ToggleTemplate t1, ToggleTemplate t2) { in assertToggleTemplate() argument 410 assertEquals(t1.isChecked(), t2.isChecked()); in assertToggleTemplate() 411 assertEquals(t1.getContentDescription(), t2.getContentDescription()); in assertToggleTemplate() 414 private void assertRangeTemplate(RangeTemplate t1, RangeTemplate t2) { in assertRangeTemplate() argument 415 assertEquals(t1.getMinValue(), t2.getMinValue(), 0.0f); in assertRangeTemplate() 416 assertEquals(t1.getMaxValue(), t2.getMaxValue(), 0.0f); in assertRangeTemplate() 417 assertEquals(t1.getCurrentValue(), t2.getCurrentValue(), 0.0f); in assertRangeTemplate() 418 assertEquals(t1.getStepValue(), t2.getStepValue(), 0.0f); in assertRangeTemplate() 419 assertEquals(t1.getFormatString(), t2.getFormatString()); in assertRangeTemplate() 423 TemperatureControlTemplate t2) { in assertTemperatureControlTemplate() argument [all …]
|
/cts/tests/tests/widget/src/android/widget/cts/util/ |
D | ListItemFactory.java | 255 TextView t2 = new TextView(context); in doubleText() local 256 t2.setHeight(desiredHeight); in doubleText() 257 t2.setText(text); in doubleText() 258 t2.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL); in doubleText() 264 ll.addView(t2, lp2); in doubleText() 280 TextView t2 = (TextView) ((LinearLayout) convertView).getChildAt(1); in convertDoubleText() local 282 t2.setText(text); in convertDoubleText()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/ |
D | DspFftServer.java | 54 double cc, ss, t1, t2; in fft() local 91 t2 = ss * r.mReal[kk + n1] + cc * r.mImag[kk + n1]; in fft() 93 r.mImag[kk + n1] = r.mImag[kk] - t2; in fft() 95 r.mImag[kk] = r.mImag[kk] + t2; in fft()
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-0243/ |
D | poc.cpp | 71 pthread_t t1, t2; in main() local 76 pthread_create(&t2, nullptr, thread_getParameter, params); in main() 94 pthread_join(t2, nullptr); in main()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | TypeTest.java | 196 Type t2 = b2.setX(5).setY(5).create(); in testEquals() local 198 assertTrue(t1.equals(t2)); in testEquals() 199 assertTrue(t2.equals(t1)); in testEquals() 200 assertTrue(t1.hashCode() == t2.hashCode()); in testEquals() 202 t2 = b2.setX(4).create(); in testEquals() 203 assertFalse(t1.equals(t2)); in testEquals() 204 assertFalse(t2.equals(t1)); in testEquals()
|
D | GetSetTest.java | 127 Type t2 = Type.createXY(mRS, e, gWidth / vs, gHeight * gDepth); in testSetup() local 128 in2DAlloc = Allocation.createTyped(mRS, t2); in testSetup() 129 out2DAlloc = Allocation.createTyped(mRS, t2); in testSetup()
|
/cts/tests/app/src/android/app/cts/ |
D | ActionBarTest.java | 60 Tab t2 = createTab("Tab 2"); in testAddTab() local 61 mBar.addTab(t2); in testAddTab() 64 assertEquals(t2, mBar.getTabAt(1)); in testAddTab() 84 assertEquals(t2, mBar.getTabAt(2)); in testAddTab()
|
/cts/tests/openglperf2/jni/reference/ |
D | GLReference.cpp | 49 double t2 = GLUtils::currentTimeMillis(); in Java_android_opengl2_cts_reference_GLGameActivity_startBenchmark() local 51 renders[i] = t2 - t1; in Java_android_opengl2_cts_reference_GLGameActivity_startBenchmark()
|
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | ExceptionUtils.java | 84 } catch (Throwable t2) { in wrappingExceptions() 86 ExceptionUtils.appendCause(t2, t)); in wrappingExceptions()
|
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
D | CodecTest.java | 106 long t2 =0; in getCurrentPosition() local 117 t2=SystemClock.uptimeMillis(); in getCurrentPosition() 124 Log.v(TAG, "mp currentPositon = " + currentPosition + " play duration = " + (t2-t1)); in getCurrentPosition() 126 if ((currentPosition < ((t2-t1) *1.2)) && (currentPosition > 0)) in getCurrentPosition() 160 long t2 =0; in setLooping() local 174 t2=SystemClock.uptimeMillis(); in setLooping() 180 Log.v(TAG, "looping position " + currentPosition + "duration = " + (t2-t1)); in setLooping() 188 if ((currentPosition < ((t2-t1-5000)*1.2)) && currentPosition > 0) in setLooping() 199 long t2=0; in pause() local 209 t2=SystemClock.uptimeMillis(); in pause() [all …]
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2019-2025/ |
D | poc.cpp | 165 pthread_t t1, t2, t3; in main() local 170 pthread_create(&t2, NULL, bcfree, NULL); in main() 173 pthread_join(t2, NULL); in main()
|
/cts/tests/tests/content/src/android/content/res/cts/ |
D | ResourcesTest.java | 1265 Resources.Theme t2 = mResources.newTheme(); in testThemeCompare() local 1267 assertTrue(t1.equals(t2)); in testThemeCompare() 1268 assertTrue(t1.hashCode() == t2.hashCode()); in testThemeCompare() 1273 assertFalse(t1.equals(t2)); in testThemeCompare() 1274 assertFalse(t1.hashCode() == t2.hashCode()); in testThemeCompare() 1275 t2.applyStyle(1, false); in testThemeCompare() 1276 assertTrue(t1.equals(t2)); in testThemeCompare() 1277 assertTrue(t1.hashCode() == t2.hashCode()); in testThemeCompare() 1279 assertFalse(t1.hashCode() == t2.hashCode()); in testThemeCompare() 1280 assertFalse(t1.equals(t2)); in testThemeCompare() [all …]
|
/cts/tests/tests/security/jni/ |
D | android_security_cts_cve_2019_2213_Test.c | 1317 txn_t t1, t2; in race_cycle() local 1325 recv_txn(bnd2, &t2); in race_cycle() 1326 free_txn(&t2); in race_cycle() 1830 txn_t t2; in place_bnd_buf() local 1833 t = &t2; in place_bnd_buf() 1842 recv_txn(2, &t2); in place_bnd_buf() 1843 free_txn(&t2); in place_bnd_buf() 1857 txn_t t1, t2; in set_up_w128() local 1859 place_bnd_buf(0, 0, &t2); in set_up_w128()
|
/cts/tests/sensor/src/android/hardware/cts/ |
D | SensorManagerStaticTest.java | 83 float t2 = 44330.f*(1.0f- (float) Math.pow(p/p0, coef)); in testGetAltitude() local 88 p0, p, t1, t2), in testGetAltitude() 89 t1, t2, 100.f); in testGetAltitude()
|
/cts/tests/tests/text/src/android/text/format/cts/ |
D | TimeTest.java | 1703 Time t2 = new Time(nonUtcTz); in testParse_dateTime() local 1704 assertTrue(t2.parse("12345678T901234Z")); in testParse_dateTime() 1707 Fields.verifyTimeEquals(utcExpected, t2); in testParse_dateTime()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | CameraDeviceTest.java | 579 } catch (Throwable t2) { in testChainedOperation() 583 results.offer(t2); in testChainedOperation()
|
/cts/tests/tests/os/src/android/os/cts/ |
D | ParcelTest.java | 2299 Throwable t2 = (Throwable) object1; 2300 assertEquals("test", t2.getMessage());
|
/cts/tests/tests/security/res/raw/ |
D | cve_2019_2245.ts | 7212 ܓ`7/D"�\J�/��Kb b2�6�K���t2���cXcs�5�7#z+A^�u ��$jLF,բ#An��ͮ�%FYV��ڵ���я��j�_5cV�]…
|
D | cve_2018_13925.ts | 3482 …F���]�����>DW�b����S�b�g�#�G1�D��/��Y����ӭ9��$amoVK]=���.l�[��F������t2���Uy���V�O�>��`�ս…
|
D | cve_2019_2244.ts | 3483 …F���]�����>DW�b����S�b�g�#�G1�D��/��Y����ӭ9��$amoVK]=���.l�[��F������t2���Uy���V�O�>��`�ս…
|