Home
last modified time | relevance | path

Searched refs:mTempInt2 (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerView.java116 private final int[] mTempInt2 = new int[2]; field in DividerView
413 getLocationOnScreen(mTempInt2); in getCurrentPosition()
415 return mTempInt2[1] + mDividerInsets; in getCurrentPosition()
417 return mTempInt2[0] + mDividerInsets; in getCurrentPosition()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java258 private int[] mTempInt2 = new int[2]; field in NotificationStackScrollLayout
892 getLocationOnScreen(mTempInt2); in getClosestChildAtRawPosition()
893 float localTouchY = touchY - mTempInt2[1]; in getClosestChildAtRawPosition()
921 getLocationOnScreen(mTempInt2); in getChildAtRawPosition()
922 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); in getChildAtRawPosition()
4080 getLocationOnScreen(mTempInt2); in closeControlsIfOutsideTouch()
4083 final int x = location[0] - mTempInt2[0]; in closeControlsIfOutsideTouch()
4084 final int y = location[1] - mTempInt2[1]; in closeControlsIfOutsideTouch()