OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:point_id
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/events/gestures/
gesture_point.h
64
// A lower
point_id
indicates that a touch occurred first.
65
// A negative
point_id
indicates that the GesturePoint is not currently
67
void set_point_id(int
point_id
) { point_id_ =
point_id
; }
68
int
point_id
() const { return point_id_; }
function in class:ui::GesturePoint
gesture_sequence.cc
533
const int
point_id
= point.
point_id
();
local
534
if (
point_id
< 0)
544
EdgeStateSignatureType signature = Signature(state_,
point_id
,
548
signature = Signature(state_,
point_id
, event.type(), TSI_ALWAYS);
766
if (iter_point.
point_id
() > point.
point_id
())
767
iter_point.set_point_id(iter_point.
point_id
() - 1);
845
GesturePoint* GestureSequence::GetPointByPointId(int
point_id
) {
846
DCHECK(0 <=
point_id
&& point_id < kMaxGesturePoints)
[
all
...]
Completed in 57 milliseconds