Searched refs:getChildAtPosition (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | SwipeHelper.java | 324 mTouchedView = mCallback.getChildAtPosition(ev); in onInterceptTouchEvent() 656 if (mCallback.getChildAtPosition(ev) != null) { in onTouchEvent() 659 mTouchedView = mCallback.getChildAtPosition(ev); in onTouchEvent() 907 View getChildAtPosition(MotionEvent ev); in getChildAtPosition() method
|
D | ExpandHelper.java | 50 ExpandableView getChildAtPosition(float x, float y); in getChildAtPosition() method 243 v = mCallback.getChildAtPosition(x, y); in findView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 1831 private ExpandableView getChildAtPosition(float touchX, float touchY) { 1832 return getChildAtPosition(touchX, touchY, true /* requireMinHeight */, 1846 ExpandableView getChildAtPosition(float touchX, float touchY, boolean requireMinHeight, 1890 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); 3448 if (getChildAtPosition( in onTouchEvent() 3913 final ExpandableView childAtTouchPos = getChildAtPosition( in onInterceptTouchEventScroll() 6448 public ExpandableView getChildAtPosition(float touchX, float touchY) { 6449 return NotificationStackScrollLayout.this.getChildAtPosition(touchX, touchY);
|
D | NotificationStackScrollLayoutController.java | 595 public View getChildAtPosition(MotionEvent ev) { 596 View child = mView.getChildAtPosition(
|