/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | DelegateViewHelper.java | 101 event.offsetLocation(deltaX, deltaY); in onInterceptTouchEvent() 103 event.offsetLocation(-deltaX, -deltaY); in onInterceptTouchEvent()
|
/frameworks/base/core/java/android/widget/ |
D | ZoomButtonsController.java | 577 containerEvent.offsetLocation(mOwnerViewRawLocation[0] - targetViewRawX, in onTouch() 585 containerEvent.offsetLocation(-containerX, 0); in onTouch() 588 containerEvent.offsetLocation(0, -containerY); in onTouch()
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
D | KeyguardSecurityViewFlipper.java | 61 ev.offsetLocation(mTempRect.left, mTempRect.top); in onTouchEvent() 63 ev.offsetLocation(-mTempRect.left, -mTempRect.top); in onTouchEvent()
|
D | KeyguardPatternView.java | 182 ev.offsetLocation(mTempRect.left, mTempRect.top); in onTouchEvent() 184 ev.offsetLocation(-mTempRect.left, -mTempRect.top); in onTouchEvent()
|
D | KeyguardHostView.java | 324 ev.offsetLocation(mTempRect.left, mTempRect.top); in onTouchEvent() 326 ev.offsetLocation(-mTempRect.left, -mTempRect.top); in onTouchEvent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | PanelView.java | 361 event.offsetLocation(deltaX, deltaY); 363 event.offsetLocation(-deltaX, -deltaY);
|
/frameworks/native/libs/input/tests/ |
D | InputEvent_test.cpp | 478 event.offsetLocation(5.0f, -2.0f); in TEST_F() 570 event.offsetLocation(-3, -2); in TEST_F()
|
/frameworks/native/include/input/ |
D | Input.h | 524 void offsetLocation(float xOffset, float yOffset);
|
/frameworks/base/core/java/android/view/ |
D | MotionEvent.java | 2685 public final void offsetLocation(float deltaX, float deltaY) { in offsetLocation() method in MotionEvent 2701 offsetLocation(x - oldX, y - oldY); in setLocation()
|
D | ViewGroup.java | 1818 transformedEvent.offsetLocation(offsetX, offsetY); in dispatchTransformedGenericPointerEvent() 1823 event.offsetLocation(offsetX, offsetY); in dispatchTransformedGenericPointerEvent() 1825 event.offsetLocation(-offsetX, -offsetY); in dispatchTransformedGenericPointerEvent() 2214 event.offsetLocation(offsetX, offsetY); in dispatchTransformedTouchEvent() 2218 event.offsetLocation(-offsetX, -offsetY); in dispatchTransformedTouchEvent() 2233 transformedEvent.offsetLocation(offsetX, offsetY); in dispatchTransformedTouchEvent()
|
D | View.java | 15839 ev.offsetLocation(info.mWindowLeft, info.mWindowTop); 15857 ev.offsetLocation(-info.mWindowLeft, -info.mWindowTop); 15872 ev.offsetLocation(vp.mScrollX, vp.mScrollY); 15875 ev.offsetLocation(0, vr.mCurScrollY); 15878 ev.offsetLocation(-mLeft, -mTop); 15895 ev.offsetLocation(mLeft, mTop); 15900 ev.offsetLocation(-vp.mScrollX, -vp.mScrollY); 15904 ev.offsetLocation(0, -vr.mCurScrollY);
|
D | ViewRootImpl.java | 3767 event.offsetLocation(0, mCurScrollY); in processPointerEvent()
|
/frameworks/native/libs/input/ |
D | Input.cpp | 405 void MotionEvent::offsetLocation(float xOffset, float yOffset) { in offsetLocation() function in android::MotionEvent
|
/frameworks/base/core/jni/ |
D | android_view_MotionEvent.cpp | 507 return event->offsetLocation(deltaX, deltaY); in android_view_MotionEvent_nativeOffsetLocation()
|
/frameworks/base/api/ |
D | current.txt | 27171 method public final void offsetLocation(float, float);
|