OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TouchState
(Results
1 - 5
of
5
) sorted by null
/frameworks/native/include/input/
InputTransport.h
375
struct
TouchState
{
404
Vector<
TouchState
> mTouchStates;
422
void rewriteMessage(const
TouchState
& state, InputMessage* msg);
/frameworks/native/libs/input/
InputTransport.cpp
594
TouchState
&
touchState
= mTouchStates.editItemAt(index);
595
touchState
.initialize(deviceId, source);
596
touchState
.addHistory(msg);
603
TouchState
&
touchState
= mTouchStates.editItemAt(index);
604
touchState
.addHistory(msg);
605
if (eventTime <
touchState
.lastResample.eventTime) {
606
rewriteMessage(
touchState
, msg);
608
touchState
.lastResample.idBits.clear()
[
all
...]
/frameworks/base/services/input/
InputDispatcher.h
[
all
...]
InputDispatcher.cpp
[
all
...]
/external/chromium_org/ui/events/gestures/
gesture_sequence.cc
26
// ui::EventType is mapped to
TouchState
so it can fit into 3 bits of
28
enum
TouchState
{
54
// Get equivalent
TouchState
from EventType |type|.
55
TouchState
TouchEventTypeToTouchState(ui::EventType type) {
326
TouchState
touch_state = TouchEventTypeToTouchState(type);
[
all
...]
Completed in 104 milliseconds