Lines Matching refs:touches

590     std::vector<::ui::InProgressTouchEvdev> touches;  in getTouches()  local
594 touches.emplace_back(::ui::InProgressTouchEvdev()); in getTouches()
595 touches.back().major = args.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR); in getTouches()
596 touches.back().minor = args.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR); in getTouches()
600 touches.back().altered = true; in getTouches()
604 touches.back().was_cancelled = false; in getTouches()
607 touches.back().cancelled = false; in getTouches()
610 touches.back().delayed = false; in getTouches()
613 touches.back().was_delayed = false; in getTouches()
616 touches.back().held = false; in getTouches()
619 touches.back().was_held = false; in getTouches()
624 touches.back().was_touching = !isDown; in getTouches()
630 touches.back().x = args.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X); in getTouches()
631 touches.back().y = args.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y); in getTouches()
638 touches.back().slot = *slot; in getTouches()
639 touches.back().tracking_id = (!isUpOrCancel) ? pointerId : -1; in getTouches()
640 touches.back().touching = !isUpOrCancel; in getTouches()
643 touches.back().pressure = args.pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE); in getTouches()
644 touches.back().tool_code = getLinuxToolCode(args.pointerProperties[i].toolType); in getTouches()
648 touches.back().stylus_button = false; in getTouches()
650 return touches; in getTouches()
662 std::vector<::ui::InProgressTouchEvdev> touches = in detectPalmPointers() local
668 for (const ::ui::InProgressTouchEvdev& touch : touches) { in detectPalmPointers()
674 mPalmDetectionFilter->Filter(touches, chromeTimestamp, &slotsToHold, &slotsToSuppress); in detectPalmPointers()