Home
last modified time | relevance | path

Searched refs:getChildAtPosition (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSwipeHelper.java282 mCurrView = mCallback.getChildAtPosition(ev); in onInterceptTouchEvent()
584 if (mCallback.getChildAtPosition(ev) != null) { in onTouchEvent()
720 View getChildAtPosition(MotionEvent ev); in getChildAtPosition() method
DExpandHelper.java43 ExpandableView getChildAtPosition(float x, float y); in getChildAtPosition() method
219 v = mCallback.getChildAtPosition(x, y); in findView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java1587 private ExpandableView getChildAtPosition(float touchX, float touchY) {
1588 return getChildAtPosition(touchX, touchY, true /* requireMinHeight */);
1601 private ExpandableView getChildAtPosition(float touchX, float touchY,
1643 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]);
4108 if (getChildAtPosition(ev.getX(), y, false /* requireMinHeight */) == null) {
6274 public View getChildAtPosition(MotionEvent ev) {
6275 View child = NotificationStackScrollLayout.this.getChildAtPosition(ev.getX(),
6502 public ExpandableView getChildAtPosition(float touchX, float touchY) {
6503 return NotificationStackScrollLayout.this.getChildAtPosition(touchX, touchY);
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskStackViewTouchHandler.java439 public View getChildAtPosition(MotionEvent ev) { in getChildAtPosition() method in TaskStackViewTouchHandler