/external/chromium_org/content/browser/renderer_host/input/ |
motion_event_web.h | 24 virtual int GetPointerId(size_t pointer_index) const OVERRIDE; 25 virtual float GetX(size_t pointer_index) const OVERRIDE; 26 virtual float GetY(size_t pointer_index) const OVERRIDE; 27 virtual float GetRawX(size_t pointer_index) const OVERRIDE; 28 virtual float GetRawY(size_t pointer_index) const OVERRIDE; 29 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; 30 virtual float GetPressure(size_t pointer_index) const OVERRIDE; 36 size_t pointer_index, 39 size_t pointer_index, 42 size_t pointer_index, [all...] |
motion_event_android.cc | 227 int MotionEventAndroid::GetPointerId(size_t pointer_index) const { 228 DCHECK_LT(pointer_index, cached_pointer_count_); 229 if (pointer_index < MAX_POINTERS_TO_CACHE) 230 return cached_pointer_ids_[pointer_index]; 232 AttachCurrentThread(), event_.obj(), pointer_index); 235 float MotionEventAndroid::GetX(size_t pointer_index) const { 236 DCHECK_LT(pointer_index, cached_pointer_count_); 237 if (pointer_index < MAX_POINTERS_TO_CACHE) 238 return cached_positions_[pointer_index].x(); 240 AttachCurrentThread(), event_.obj(), pointer_index)); [all...] |
motion_event_web.cc | 78 int MotionEventWeb::GetPointerId(size_t pointer_index) const { 79 DCHECK_LT(pointer_index, GetPointerCount()); 80 return event_.touches[pointer_index].id; 83 float MotionEventWeb::GetX(size_t pointer_index) const { 84 DCHECK_LT(pointer_index, GetPointerCount()); 85 return event_.touches[pointer_index].position.x; 88 float MotionEventWeb::GetY(size_t pointer_index) const { 89 DCHECK_LT(pointer_index, GetPointerCount()); 90 return event_.touches[pointer_index].position.y; 93 float MotionEventWeb::GetRawX(size_t pointer_index) const [all...] |
motion_event_android.h | 53 virtual int GetPointerId(size_t pointer_index) const OVERRIDE; 54 virtual float GetX(size_t pointer_index) const OVERRIDE; 55 virtual float GetY(size_t pointer_index) const OVERRIDE; 56 virtual float GetRawX(size_t pointer_index) const OVERRIDE; 57 virtual float GetRawY(size_t pointer_index) const OVERRIDE; 58 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; 59 virtual float GetPressure(size_t pointer_index) const OVERRIDE; 64 virtual float GetHistoricalTouchMajor(size_t pointer_index, 66 virtual float GetHistoricalX(size_t pointer_index, 68 virtual float GetHistoricalY(size_t pointer_index, [all...] |
web_input_event_util.cc | 181 size_t pointer_index) { 183 touch.id = event.GetPointerId(pointer_index); 186 static_cast<int>(pointer_index) == event.GetActionIndex()); 187 touch.position.x = event.GetX(pointer_index); 188 touch.position.y = event.GetY(pointer_index); 189 touch.screenPosition.x = event.GetRawX(pointer_index); 190 touch.screenPosition.y = event.GetRawY(pointer_index); 191 touch.radiusX = touch.radiusY = event.GetTouchMajor(pointer_index) * 0.5f; 192 touch.force = event.GetPressure(pointer_index);
|
/frameworks/base/native/android/ |
input.cpp | 133 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index) { 134 return static_cast<const MotionEvent*>(motion_event)->getPointerId(pointer_index); 137 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index) { 138 return static_cast<const MotionEvent*>(motion_event)->getToolType(pointer_index); 141 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) { 142 return static_cast<const MotionEvent*>(motion_event)->getRawX(pointer_index); 145 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) { 146 return static_cast<const MotionEvent*>(motion_event)->getRawY(pointer_index); 149 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) { 150 return static_cast<const MotionEvent*>(motion_event)->getX(pointer_index); [all...] |
/external/chromium_org/ui/events/gestures/ |
motion_event_aura.h | 33 virtual int GetPointerId(size_t pointer_index) const OVERRIDE; 34 virtual float GetX(size_t pointer_index) const OVERRIDE; 35 virtual float GetY(size_t pointer_index) const OVERRIDE; 36 virtual float GetRawX(size_t pointer_index) const OVERRIDE; 37 virtual float GetRawY(size_t pointer_index) const OVERRIDE; 38 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; 39 virtual float GetPressure(size_t pointer_index) const OVERRIDE; 45 virtual float GetHistoricalTouchMajor(size_t pointer_index, 47 virtual float GetHistoricalX(size_t pointer_index, 49 virtual float GetHistoricalY(size_t pointer_index, [all...] |
motion_event_aura.cc | 94 int MotionEventAura::GetPointerId(size_t pointer_index) const { 95 DCHECK_LE(pointer_index, pointer_count_); 96 return active_touches_[pointer_index].touch_id; 99 float MotionEventAura::GetX(size_t pointer_index) const { 100 DCHECK_LE(pointer_index, pointer_count_); 101 return active_touches_[pointer_index].x; 104 float MotionEventAura::GetY(size_t pointer_index) const { 105 DCHECK_LE(pointer_index, pointer_count_); 106 return active_touches_[pointer_index].y; 109 float MotionEventAura::GetRawX(size_t pointer_index) const [all...] |
/external/chromium_org/ui/events/gesture_detection/ |
motion_event.h | 53 virtual int GetPointerId(size_t pointer_index) const = 0; 54 virtual float GetX(size_t pointer_index) const = 0; 55 virtual float GetY(size_t pointer_index) const = 0; 56 virtual float GetRawX(size_t pointer_index) const = 0; 57 virtual float GetRawY(size_t pointer_index) const = 0; 58 virtual float GetTouchMajor(size_t pointer_index) const = 0; 59 virtual float GetPressure(size_t pointer_index) const = 0; 65 virtual float GetHistoricalTouchMajor(size_t pointer_index, 67 virtual float GetHistoricalX(size_t pointer_index, 69 virtual float GetHistoricalY(size_t pointer_index, [all...] |
/external/chromium_org/ui/events/test/ |
mock_motion_event.h | 48 virtual int GetPointerId(size_t pointer_index) const OVERRIDE; 49 virtual float GetX(size_t pointer_index) const OVERRIDE; 50 virtual float GetY(size_t pointer_index) const OVERRIDE; 51 virtual float GetRawX(size_t pointer_index) const OVERRIDE; 52 virtual float GetRawY(size_t pointer_index) const OVERRIDE; 53 virtual float GetTouchMajor(size_t pointer_index) const OVERRIDE; 54 virtual float GetPressure(size_t pointer_index) const OVERRIDE; 59 virtual float GetHistoricalTouchMajor(size_t pointer_index, 61 virtual float GetHistoricalX(size_t pointer_index, 63 virtual float GetHistoricalY(size_t pointer_index, [all...] |
mock_motion_event.cc | 105 int MockMotionEvent::GetPointerId(size_t pointer_index) const { 106 DCHECK(pointer_index < pointer_count); 107 return static_cast<int>(pointer_index); 110 float MockMotionEvent::GetX(size_t pointer_index) const { 111 return points[pointer_index].x(); 114 float MockMotionEvent::GetY(size_t pointer_index) const { 115 return points[pointer_index].y(); 118 float MockMotionEvent::GetRawX(size_t pointer_index) const { 119 return GetX(pointer_index) + raw_offset.x(); 122 float MockMotionEvent::GetRawY(size_t pointer_index) const [all...] |
/development/ndk/platforms/android-14/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/development/ndk/platforms/android-18/include/android/ |
input.h | 610 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 615 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 621 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 627 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 632 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 637 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 643 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 651 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 655 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 659 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/frameworks/native/include/android/ |
input.h | 610 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 615 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 621 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index); 627 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index); 632 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index); 637 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index); 643 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index); 651 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index); 655 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index); 659 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index); [all...] |
/prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-15/arch-arm/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-15/arch-x86/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-16/arch-arm/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-16/arch-x86/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-17/arch-arm/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |
/prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/android/ |
input.h | 608 int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointer_index); 613 int32_t AMotionEvent_getToolType(const AInputEvent* motion_event, size_t pointer_index); 619 float AMotionEvent_getRawX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 625 float AMotionEvent_getRawY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 630 float AMotionEvent_getX(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 635 float AMotionEvent_getY(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 641 float AMotionEvent_getPressure(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 649 float AMotionEvent_getSize(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 653 float AMotionEvent_getTouchMajor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__; 657 float AMotionEvent_getTouchMinor(const AInputEvent* motion_event, size_t pointer_index) __NDK_FPABI__ [all...] |