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

/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DOverlayListView.java103 private Rect mCurrentBounds; field in class:OverlayListView.OverlayObject
118 mCurrentBounds = new Rect(startRect);
119 if (mBitmap != null && mCurrentBounds != null) {
121 mBitmap.setBounds(mCurrentBounds);
239 mCurrentBounds.top = mStartRect.top + deltaY;
240 mCurrentBounds.bottom = mStartRect.bottom + deltaY;
242 if (mBitmap != null && mCurrentBounds != null) {
244 mBitmap.setBounds(mCurrentBounds);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java286 private Rect mCurrentBounds = new Rect(-1, -1, -1, -1); field in class:NotificationStackScrollLayout
454 && mCurrentBounds.top < mCurrentBounds.bottom) {
455 canvas.drawRect(0, mCurrentBounds.top, getWidth(), mCurrentBounds.bottom,
2044 if (!mCurrentBounds.equals(mBackgroundBounds)) {
2054 mCurrentBounds.set(mBackgroundBounds);
2079 mCurrentBounds.left = mBackgroundBounds.left;
2080 mCurrentBounds.right = mBackgroundBounds.right;
2114 mCurrentBounds
[all...]

Completed in 90 milliseconds