Home
last modified time | relevance | path

Searched refs:strokeId (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DGestureDescriptionTest.java363 Matcher<GestureStep> hasStrokeId(final int strokeId) {
368 if (gestureStep.touchPoints[i].mStrokeId == strokeId) {
377 description.appendText("Has at least one point with stroke id " + strokeId);
382 Matcher<GestureStep> continuesStrokeId(final int strokeId) {
387 if (gestureStep.touchPoints[i].mContinuedStrokeId == strokeId) {
396 description.appendText("Continues stroke id " + strokeId);
DMotionEventInjectorTest.java718 private List<GestureStep> createSimpleGestureFromPoints(int strokeId, int continuedStrokeId, in createSimpleGestureFromPoints() argument
728 touchPoints[0].mStrokeId = strokeId; in createSimpleGestureFromPoints()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DMotionEventInjector.java480 int strokeId) { in findPointByStrokeId() argument
482 if (touchPoints[i].mStrokeId == strokeId) { in findPointByStrokeId()