Searched defs:touch_points (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/events/gesture_detection/
H A Dgesture_touch_uma_histogram.cc68 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 local
[all...]
/external/chromium_org/ui/events/
H A Dgesture_event_details.h24 int touch_points() const { return touch_points_; } function in struct:ui::GestureEventDetails
25 void set_touch_points(int touch_points) { argument
26 DCHECK_GT(touch_points, 0);
27 touch_points_ = touch_points;

Completed in 91 milliseconds