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

  /external/chromium_org/remoting/android/javatests/src/org/chromium/chromoting/
TouchEventGenerator.java 35 * @param actionMasked The (masked) action to generate, for example, ACTION_POINTER_DOWN.
38 * |actionMasked| to set the new event's |action| property.
40 private MotionEvent obtainEvent(int actionMasked, int id) {
43 int action = (actionIndex << MotionEvent.ACTION_POINTER_INDEX_SHIFT) | actionMasked;
78 int actionMasked;
81 actionMasked = MotionEvent.ACTION_DOWN;
83 actionMasked = MotionEvent.ACTION_POINTER_DOWN;
85 return obtainEvent(actionMasked, id);
97 int actionMasked = mFingerPositions.size() == 1
100 MotionEvent event = obtainEvent(actionMasked, id)
    [all...]
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker.cc 280 int32_t actionMasked = event.GetAction();
282 switch (actionMasked) {
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 395 final int actionMasked = event.getActionMasked();
397 if (actionMasked == MotionEvent.ACTION_POINTER_DOWN) {
418 } else if (actionMasked == MotionEvent.ACTION_POINTER_UP) {
ViewGroup.java     [all...]
  /frameworks/native/libs/input/
VelocityTracker.cpp 265 int32_t actionMasked = event->getActionMasked();
267 switch (actionMasked) {
    [all...]
  /frameworks/base/core/java/android/widget/
FastScroller.java     [all...]
ScrollView.java 591 final int actionMasked = ev.getActionMasked();
593 if (actionMasked == MotionEvent.ACTION_DOWN) {
598 switch (actionMasked) {
    [all...]
AbsListView.java     [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.cpp     [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 465 milliseconds