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

/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java121 private final int[] mTempInt2 = new int[2]; field in class:DividerView
471 getLocationOnScreen(mTempInt2);
473 return mTempInt2[1] + mDividerInsets;
475 return mTempInt2[0] + mDividerInsets;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java272 private int[] mTempInt2 = new int[2]; field in class:NotificationStackScrollLayout
1048 getLocationOnScreen(mTempInt2);
1049 float localTouchY = touchY - mTempInt2[1];
1078 getLocationOnScreen(mTempInt2);
1079 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]);
2237 getLocationInWindow(mTempInt2);
2238 mBackgroundBounds.left = mTempInt2[0];
2239 mBackgroundBounds.right = mTempInt2[0] + getWidth();
4579 view.getLocationOnScreen(mTempInt2);
[all...]

Completed in 76 milliseconds