HomeSort by relevance Sort by last modified time
    Searched refs:point_id (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ui/events/gestures/
gesture_point.h 66 // A lower point_id indicates that a touch occurred first.
67 // A negative point_id indicates that the GesturePoint is not currently
69 void set_point_id(int point_id) { point_id_ = point_id; }
70 int point_id() const { return point_id_; } function in class:ui::GesturePoint
gesture_sequence.cc 534 const int point_id = point.point_id(); local
535 if (point_id < 0)
545 EdgeStateSignatureType signature = Signature(state_, point_id,
549 signature = Signature(state_, point_id, event.type(), TSI_ALWAYS);
774 if (iter_point.point_id() > point.point_id())
775 iter_point.set_point_id(iter_point.point_id() - 1);
855 GesturePoint* GestureSequence::GetPointByPointId(int point_id) {
856 DCHECK(0 <= point_id && point_id < kMaxGesturePoints)
    [all...]
gesture_sequence.h 97 // with id |point_id|.
98 GesturePoint* GetPointByPointId(int point_id);

Completed in 33 milliseconds