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.java122 private final int[] mTempInt2 = new int[2]; field in DividerView
457 getLocationOnScreen(mTempInt2); in getCurrentPosition()
459 return mTempInt2[1] + mDividerInsets; in getCurrentPosition()
461 return mTempInt2[0] + mDividerInsets; in getCurrentPosition()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java254 private int[] mTempInt2 = new int[2]; field in NotificationStackScrollLayout
942 getLocationOnScreen(mTempInt2); in getClosestChildAtRawPosition()
943 float localTouchY = touchY - mTempInt2[1]; in getClosestChildAtRawPosition()
971 getLocationOnScreen(mTempInt2); in getChildAtRawPosition()
972 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); in getChildAtRawPosition()
4206 view.getLocationOnScreen(mTempInt2); in closeControlsIfOutsideTouch()
4207 final int x = mTempInt2[0]; in closeControlsIfOutsideTouch()
4208 final int y = mTempInt2[1]; in closeControlsIfOutsideTouch()