/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
D | ColorSpaceTests.java | 72 point(0, 0), point(48, 0), point(32, 40), point(0, 40), point(0, 56) in testDrawDisplayP3() 86 point(0, 0), point(48, 0), point(32, 40), point(0, 40), point(0, 56) in testDrawDisplayP3Config565() 104 point(0, 0), point(48, 0), point(32, 40), point(0, 40), point(0, 56) in testDrawProPhotoRGB() 119 point(0, 0), point(48, 0), point(32, 40), point(0, 40), point(0, 56) in testDrawProPhotoRGBConfig565() 136 new Point[] { point(0, 0) }, in testDrawTranslucentAdobeRGB() 189 private static Point point(int x, int y) { in point() method in ColorSpaceTests
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/ |
D | GestureUtils.java | 78 public static StrokeDescription pointerDown(PointF point) { in pointerDown() argument 79 return new StrokeDescription(path(point), 0, ViewConfiguration.getTapTimeout(), true); in pointerDown() 92 public static StrokeDescription click(PointF point) { in click() argument 93 return new StrokeDescription(path(point), 0, ViewConfiguration.getTapTimeout()); in click() 96 public static StrokeDescription longClick(PointF point) { in longClick() argument 97 return new StrokeDescription(path(point), 0, in longClick() 118 for (PointF point : rest) { in path() 119 path.lineTo(point.x, point.y); in path() 167 public static GestureDescription doubleTap(PointF point) { in doubleTap() argument 168 return multiTap(point, 2); in doubleTap() [all …]
|
/cts/tests/tests/gesture/src/android/gesture/cts/ |
D | GesturePointTest.java | 37 GesturePoint point = new GesturePoint(expected_x, expected_y, expected_timestamp); in testGesturePointConstructor() local 38 assertEquals(expected_x, point.x); in testGesturePointConstructor() 39 assertEquals(expected_y, point.y); in testGesturePointConstructor() 40 assertEquals(expected_timestamp, point.timestamp); in testGesturePointConstructor()
|
D | LineGestureStrokeHelper.java | 91 for (GesturePoint point : points) { in createGestureStroke() 92 list.add(point); in createGestureStroke()
|
/cts/tests/tests/view/src/android/view/cts/ |
D | ViewUnbufferedTest.java | 266 final Point point = getViewCenterOnScreen(mView); in testNormalTouch() local 267 sendPointerEvents(point.x, point.y, in testNormalTouch() 282 final Point point = getViewCenterOnScreen(mView); in testUnbufferedTouch() local 283 sendPointerEvents(point.x, point.y, in testUnbufferedTouch() 301 final Point point = getViewCenterOnScreen(mView); in testUnbufferedTouchByEvent() local 302 sendPointerEvents(point.x, point.y, in testUnbufferedTouchByEvent() 316 final Point point = getViewCenterOnScreen(mView); in testUnbufferedTouch_Reset() local 317 sendPointerEvents(point.x, point.y, in testUnbufferedTouch_Reset() 325 sendPointerEvents(point.x, point.y, in testUnbufferedTouch_Reset() 366 final Point point = getViewCenterOnScreen(mView); in testUnbufferedHover() local [all …]
|
D | VerifyInputEventTest.java | 157 final Point point = getViewCenterOnScreen(view); in testMotionEvent() local 160 point.x, point.y, 0 /*metaState*/); in testMotionEvent() 170 MotionEvent.ACTION_UP, point.x, point.y, 0 /*metaState*/); in testMotionEvent() 183 final Point point = getViewCenterOnScreen(view); in testMotionEventWithoutHmac() local 186 point.x, point.y, 0 /*metaState*/); in testMotionEventWithoutHmac() 194 point.x, point.y, 0 /*metaState*/); in testMotionEventWithoutHmac() 206 final Point point = getViewCenterOnScreen(view); in testTamperedMotionEvent() local 209 point.x, point.y, 0 /*metaState*/); in testTamperedMotionEvent() 219 MotionEvent.ACTION_UP, point.x, point.y, 0 /*metaState*/); in testTamperedMotionEvent() 261 final Point point = getViewCenterOnScreen(view); in testDeviceIdBecomesVirtualForInjectedMotions() local [all …]
|
D | SystemGestureExclusionRectsTest.java | 74 int[] point = new int[2]; in staticView() 75 v.getLocationInWindow(point); in staticView() 76 expected.left = point[0]; in staticView() 77 expected.top = point[1]; in staticView() 213 int[] point = new int[2]; in ignoreHiddenViewRects() local 214 v.getLocationInWindow(point); in ignoreHiddenViewRects() 217 offsetR.offsetTo(point[0], point[1]); in ignoreHiddenViewRects()
|
D | TextureViewTest.java | 557 private int getPixel(Window window, Point point) { in getPixel() argument 562 int pixel = screenshot.getPixel(point.x, point.y); in getPixel() 567 private void waitForColor(Window window, Point point, int color) in waitForColor() argument 570 int pixel = getPixel(window, point); in waitForColor() 579 private int waitForChange(Window window, Point point, int color) in waitForChange() argument 582 int pixel = getPixel(window, point); in waitForChange()
|
D | ViewTest.java | 975 Point point = new Point(); in testGetGlobalVisibleRectPoint() local 977 assertTrue(view.getGlobalVisibleRect(rect, point)); in testGetGlobalVisibleRectPoint() 985 assertEquals(ptParent.x, point.x); in testGetGlobalVisibleRectPoint() 986 assertEquals(ptParent.y, point.y); in testGetGlobalVisibleRectPoint() 992 assertFalse(view.getGlobalVisibleRect(rect, point)); in testGetGlobalVisibleRectPoint() 998 assertFalse(view.getGlobalVisibleRect(rect, point)); in testGetGlobalVisibleRectPoint() 1008 assertTrue(view.getGlobalVisibleRect(rect, point)); in testGetGlobalVisibleRectPoint() 1013 assertEquals(ptParent.x, point.x); in testGetGlobalVisibleRectPoint() 1014 assertEquals(ptParent.y, point.y); in testGetGlobalVisibleRectPoint()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | PointTest.java | 43 Point point = new Point(10, 10); in testConstructor() local 44 mPoint = new Point(point); in testConstructor() 65 Point point = new Point(3, 4); in testEquals2() local 66 assertTrue(mPoint.equals(point)); in testEquals2() 67 point = new Point(4, 3); in testEquals2() 68 assertFalse(mPoint.equals(point)); in testEquals2()
|
D | PointFTest.java | 43 Point point = new Point(10, 10); in testConstructor() local 44 mPointF = new PointF(point); in testConstructor()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/touch/ |
D | TouchPointView.java | 72 finger.point = new Point((int)event.getX(pointerIndex), (int)event.getY(pointerIndex)); in onTouchEvent() 86 Point point = finger.point; in onDraw() local 89 canvas.drawCircle(point.x, point.y, radius, mPaint); in onDraw() 94 public Point point; field in TouchPointView.Finger
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/ |
D | README | 4 the native code, make NDK_BUILD variable to point the correct path in
|
/cts/apps/CtsVerifier/include/colorchecker/ |
D | imagetesthandler.h | 41 void drawPoint(const Vec2i &point, const Vec3i &color);
|
/cts/tests/openglperf2/assets/vertex/ |
D | water | 26 // Multiply to get the final point in normalized screen coordinates.
|
D | perspective | 30 // Multiply to get the final point in normalized screen coordinates.
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | ValueAnimatorTest.java | 434 PointF point = (PointF) animation.getAnimatedValue(); in testSetObjectValues() 435 assertTrue(point.x >= 0f && point.x <= 1f); in testSetObjectValues() 436 assertTrue(point.y >= 0f && point.y <= 1f); in testSetObjectValues()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
D | layered_filter_fast_d1new.rscript | 414 // At this point, sharp->dilated_depth must be within the depth range of 444 // At this point, sharp->dilated_depth must be within the depth range of 479 // At this point, this pixel must be either active or close enough to an 496 // At this point, sharp->dilated_depth must be within the depth range of 533 // At this point, this pixel must be either active or close enough to an 549 // At this point, sharp->dilated_depth must be within the depth range of 596 // At this point, this pixel must be either active or close enough to an 643 // At this point, this pixel must be either active or close enough to an
|
D | layered_filter_fast_f32.rscript | 313 // At this point, sharp->dilated_depth must be within the depth range of 347 // At this point, this pixel must be either active or close enough to an 364 // At this point, sharp->dilated_depth must be within the depth range of 410 // At this point, this pixel must be either active or close enough to an
|
/cts/hostsidetests/appsecurity/test-apps/ApkVerityTestAppPrebuilt/ |
D | README.md | 11 key. You will also need to point the test to use your local build.
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
D | ItsSerializer.java | 106 private static Object serializePoint(Point point) throws org.json.JSONException { in serializePoint() argument 108 pointObj.put("x", point.x); in serializePoint() 109 pointObj.put("y", point.y); in serializePoint()
|
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | MediaUtils.java | 367 for (MediaCodecInfo.VideoCapabilities.PerformancePoint point : pp) { in canDecode() 368 if (point.covers(target)) { in canDecode() 370 " covered by point " + point.toString()); in canDecode()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | VideoEncoderTest.java | 1032 private int alignedPointInRange(double point, int align, Range<Integer> range) { in alignedPointInRange() argument 1034 range.getLower() + point * (range.getUpper() - range.getLower()), align, range); in alignedPointInRange()
|