HomeSort by relevance Sort by last modified time
    Searched defs:touch_points (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/events/gesture_detection/
gesture_touch_uma_histogram.cc 68 int touch_points = gesture.details.touch_points(); local
69 if (touch_points == 1)
71 else if (touch_points == 2)
73 else if (touch_points == 3)
101 int touch_points = gesture.details.touch_points(); local
102 if (touch_points >= 4)
104 else if (touch_points == 3)
113 int touch_points = gesture.details.touch_points() local
    [all...]
  /external/chromium_org/ui/events/
gesture_event_details.h 24 int touch_points() const { return touch_points_; } function in struct:ui::GestureEventDetails
25 void set_touch_points(int touch_points) {
26 DCHECK_GT(touch_points, 0);
27 touch_points_ = touch_points;

Completed in 105 milliseconds