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

/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java122 private final int[] mTempInt2 = new int[2]; field in class:DividerView
453 getLocationOnScreen(mTempInt2);
455 return mTempInt2[1] + mDividerInsets;
457 return mTempInt2[0] + mDividerInsets;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java262 private int[] mTempInt2 = new int[2]; field in class:NotificationStackScrollLayout
1034 getLocationOnScreen(mTempInt2);
1035 float localTouchY = touchY - mTempInt2[1];
1064 getLocationOnScreen(mTempInt2);
1065 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]);
2212 getLocationInWindow(mTempInt2);
2213 mBackgroundBounds.left = mTempInt2[0];
2214 mBackgroundBounds.right = mTempInt2[0] + getWidth();
4472 view.getLocationOnScreen(mTempInt2);
[all...]

Completed in 54 milliseconds