/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
D | AccessibilityGestureDetectorTest.java | 193 final int dx = mStrokeLenPxX; in runGestureDetectionTestOnDisplay() local 205 testPath(p(-dx, +0), AccessibilityService.GESTURE_SWIPE_LEFT, displayId); in runGestureDetectionTestOnDisplay() 206 testPath(p(+dx, +0), AccessibilityService.GESTURE_SWIPE_RIGHT, displayId); in runGestureDetectionTestOnDisplay() 210 testPath(p(-dx, +0), p(+0, +0), AccessibilityService.GESTURE_SWIPE_LEFT_AND_RIGHT, in runGestureDetectionTestOnDisplay() 212 testPath(p(-dx, +0), p(-dx, -dy), AccessibilityService.GESTURE_SWIPE_LEFT_AND_UP, in runGestureDetectionTestOnDisplay() 214 testPath(p(-dx, +0), p(-dx, +dy), AccessibilityService.GESTURE_SWIPE_LEFT_AND_DOWN, in runGestureDetectionTestOnDisplay() 217 testPath(p(+dx, +0), p(+0, +0), AccessibilityService.GESTURE_SWIPE_RIGHT_AND_LEFT, in runGestureDetectionTestOnDisplay() 219 testPath(p(+dx, +0), p(+dx, -dy), AccessibilityService.GESTURE_SWIPE_RIGHT_AND_UP, in runGestureDetectionTestOnDisplay() 221 testPath(p(+dx, +0), p(+dx, +dy), AccessibilityService.GESTURE_SWIPE_RIGHT_AND_DOWN, in runGestureDetectionTestOnDisplay() 224 testPath(p(+0, -dy), p(-dx, -dy), AccessibilityService.GESTURE_SWIPE_UP_AND_LEFT, in runGestureDetectionTestOnDisplay() [all …]
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | CanvasDrawGlyphsTest.java | 258 float dx = 10f; in drawGlyphs_positionDifference() local 265 DRAW_ORIGIN_X + dx, DRAW_ORIGIN_Y + dy, in drawGlyphs_positionDifference() 266 DRAW_ORIGIN_X + dx * 2, DRAW_ORIGIN_Y + dy * 2, in drawGlyphs_positionDifference() 267 DRAW_ORIGIN_X + dx * 3, DRAW_ORIGIN_Y + dy * 3, in drawGlyphs_positionDifference() 268 DRAW_ORIGIN_X + dx * 4, DRAW_ORIGIN_Y + dy * 4, in drawGlyphs_positionDifference() 276 dx = 5f; in drawGlyphs_positionDifference() 283 DRAW_ORIGIN_X + dx, DRAW_ORIGIN_Y + dy, in drawGlyphs_positionDifference() 284 DRAW_ORIGIN_X + dx * 2, DRAW_ORIGIN_Y + dy * 2, in drawGlyphs_positionDifference() 285 DRAW_ORIGIN_X + dx * 3, DRAW_ORIGIN_Y + dy * 3, in drawGlyphs_positionDifference() 286 DRAW_ORIGIN_X + dx * 4, DRAW_ORIGIN_Y + dy * 4, in drawGlyphs_positionDifference()
|
D | RadialGradientTest.java | 108 double dx = Math.cos(angle) * radius; in testColorLong() local 112 int x = 50 + (int) (nx * dx); in testColorLong()
|
D | SweepGradientTest.java | 282 double dx = Math.cos(angle) * radius; in testColorLong() local 284 int x = 50 + (int) (dx); in testColorLong()
|
/cts/tools/cfassembler/src/dxconvext/ |
D | ClassFileParser.java | 19 import com.android.dx.cf.direct.ClassPathOpener; 20 import com.android.dx.cf.direct.DirectClassFile; 21 import com.android.dx.cf.direct.StdAttributeFactory; 22 import com.android.dx.cf.iface.Member; 23 import com.android.dx.cf.iface.ParseObserver; 24 import com.android.dx.util.ByteArray; 25 import com.android.dx.util.FileUtils;
|
/cts/tests/openglperf2/jni/graphics/ |
D | Vector2D.cpp | 47 float dx = mX - v.mX; in distance() local 49 return (float) sqrt(dx * dx + dy * dy); in distance()
|
/cts/tests/tests/uirendering27/src/android/uirendering/cts/testinfrastructure/ |
D | DrawActivity.kt | 35 class Offset(val dx: Float, val dy: Float) { constant in android.uirendering.cts.testinfrastructure.Offset 38 dx == other.dx && dy == other.dy in equals() 42 override fun hashCode(): Int = dx.hashCode() xor dy.hashCode() in hashCode()
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/ |
D | DrawActivity.kt | 35 class Offset(val dx: Float, val dy: Float) { constant in android.uirendering.cts.testinfrastructure.Offset 38 dx == other.dx && dy == other.dy in equals() 42 override fun hashCode(): Int = dx.hashCode() xor dy.hashCode() in hashCode()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/ |
D | KernelDataForRenderScriptd1new.java | 116 float dx = dx0 + (float) u / (float) getNumSubPixels(); in generateDiskKernelArray() local 120 float xf = x - kernelRadius + dx; in generateDiskKernelArray()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/ |
D | KernelDataForRenderScriptF32.java | 115 float dx = dx0 + (float) u / (float) getNumSubPixels(); in generateDiskKernelArray() local 119 float xf = x - kernelRadius + dx; in generateDiskKernelArray()
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
D | PaintTests.kt | 56 val dx = 5f in <lambda>() constant 62 canvas.translate(dx, dy) in <lambda>() 69 paint.setShadowLayer(radius, dx, dy, shadowColor) in <lambda>()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
D | DetermineFovActivity.java | 239 float dx = markerX / markerZ * focalLength; in drawContents() local 240 float projectedMarkerLeft = dstWidth / 2 - dx; in drawContents() 241 float projectedMarkerRight = dstWidth / 2 + dx; in drawContents()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | RVCVRecordActivity.java | 949 int dx, dy, dz; in onNewData() local 953 dx = (int)(Math.asin(mRTemp[8])*(180.0/Math.PI)); in onNewData() 959 d = dx; in onNewData() 964 valid = (Math.abs(dx) < 30); in onNewData() 968 valid = (Math.abs(dx) < 20 && Math.abs(dy) < 20); in onNewData()
|
/cts/apps/CtsVerifier/ |
D | proguard.flags | 43 -keep class com.android.dx.mockito.** { *; }
|
/cts/tests/tests/media/src/android/media/cts/ |
D | VideoEncoderTest.java | 977 for (int dx = 0; dx <= xAlign; dx += xAlign) { in addExtremeSizesFor() 979 Set<Size> bucket = (dx + dy == 0) ? minMax : nearMinMax; in addExtremeSizesFor() 981 int width = getExtreme(mVideoCaps.getSupportedWidths(), x, dx); in addExtremeSizesFor() 990 .intersect(0, wideScreen.getWidth()), x, dx); in addExtremeSizesFor() 999 int width = getExtreme(mVideoCaps.getSupportedWidthsFor(height), x, dx); in addExtremeSizesFor() 1008 width = getExtreme(mVideoCaps.getSupportedWidthsFor(height), x, dx); in addExtremeSizesFor()
|
/cts/apps/CtsVerifier/libs/ |
D | opencv3-android.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/opencv/
org/ ... |
/cts/tests/tests/media/assets/hls_variant/165340/ |
D | 12.ts | 503 …GA���!_� �A��3�A��p"�`�$TLu����=��h ��r�W��k�9dx��z�c�=�컽����R���…
|
D | 19.ts | 583 …eb.���&�?���D�`&��#�1sm���n�\슝QwP6�7��y��f�W�tĨ��/x� b�(^�G����/�G� �a�x+~`9�\�dx��
|
D | 15.ts | 361 4�j�XxC�n�)�Hm�xO�k1����|���dx�wD�1|`��g��PF�
|
D | 03.ts | 671 z�;F�n�躃G�\,\�dUL�dx.�����v3�F�\�s�j1����Lm����AXC�HO����_r�j� ۋ�g��ޥ����Eu~D�z_�#�…
|
/cts/tests/tests/media/assets/hls_variant/387360/ |
D | 16.ts | 292 …�QO>N({��8�Q�|.mB@�1'���ў]G�R�H��z$,d�֏s�9Ǎ�rO����QY�;��K�wR�dx<�le"��tOu�4b� �9�… 701 �,�*���H6)UX�B�b��J|dx,WD��u���CE��q��Ő+��<,����|�N��KK������d��?,gm�^�
|
D | 13.ts | 519 ��Bg��t�?Z����y˶�L���(ƨ1X'\X<i/�(��Ė�=��(���v����L��neݸ/Ż�� �:0dx���4x�ww�Uߘ��G�$Y��e�c…
|
D | 03.ts | 129 …hpV=2���G|���#�L>e?�~��=�;������7�u�=8�`�L@ �l�J�7L�mvR�7�<�x��dx;��z!�CQ�����ğ��YU�… 596 � z.+@dx�<
|
/cts/tests/tests/media/assets/hls_variant/344388/ |
D | 18.ts | 467 �����~�l�-��k��M�Y�:S7�"F�4[�hoV���s.C�$�Z݇�dx�n�=c��I)G�P�*�g�')w�Kڻ����;�1]��>n�O�A��… 611 �����%�Ϲ]ʪ���L�Ӥe����dx�ܩ�XԔ�aY���i��';�2`=Dp��^�%HU�-{�o[�8~�X���WR<E�n�/L0IG��r�%zZJ�'…
|
/cts/tests/tests/media/assets/hls_variant/765178/ |
D | 17.ts | 82 �g�7�,=ءHd�Ü�7����Pp�D��vT��B("�<���bp�k�(�'I�X��<`dx*���Ll�,�g@o��M�]Asj�o�Y�\d��ā/�\{… 90 E�R)��G���*��G[�������6a]�J�-��:����uq�d�N#$/�dx�6��Ge��䵿\�.R� �q9]�v�H�~V���*OĀ…
|