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/statusbar/stack/
DNotificationStackScrollLayout.java293 private int[] mTempInt2 = new int[2]; field in NotificationStackScrollLayout
1230 getLocationOnScreen(mTempInt2);
1231 float localTouchY = touchY - mTempInt2[1];
1260 getLocationOnScreen(mTempInt2);
1261 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]);
2424 getLocationInWindow(mTempInt2);
2425 mBackgroundBounds.left = mTempInt2[0] + mSidePaddings;
2426 mBackgroundBounds.right = mTempInt2[0] + getWidth() - mSidePaddings;
4855 view.getLocationOnScreen(mTempInt2);
4856 final int x = mTempInt2[0];
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerView.java121 private final int[] mTempInt2 = new int[2]; field in DividerView
488 getLocationOnScreen(mTempInt2); in getCurrentPosition()
490 return mTempInt2[1] + mDividerInsets; in getCurrentPosition()
492 return mTempInt2[0] + mDividerInsets; in getCurrentPosition()