Home
last modified time | relevance | path

Searched defs:withCoords (Results 1 – 2 of 2) sorted by relevance

/cts/libs/input/src/com/android/cts/input/
DInputEventMatchers.kt31 fun withCoords(pt: PointF): Matcher<MotionEvent> = object : TypeSafeMatcher<MotionEvent>() { in withCoords() method
52 fun withCoords(pt: Point): Matcher<MotionEvent> = withCoords(PointF(pt)) in withCoords() method
/cts/tests/tests/view/src/android/view/cts/
DMotionEventUtils.java31 public static PointerCoordsBuilder withCoords(float x, float y) { in withCoords() method in MotionEventUtils