Searched refs:mCurrentBounds (Results 1 – 3 of 3) sorted by relevance
/frameworks/support/v7/mediarouter/src/android/support/v7/app/ |
D | OverlayListView.java | 103 private Rect mCurrentBounds; field in OverlayListView.OverlayObject 118 mCurrentBounds = new Rect(startRect); in OverlayObject() 119 if (mBitmap != null && mCurrentBounds != null) { in OverlayObject() 121 mBitmap.setBounds(mCurrentBounds); in OverlayObject() 239 mCurrentBounds.top = mStartRect.top + deltaY; in update() 240 mCurrentBounds.bottom = mStartRect.bottom + deltaY; in update() 242 if (mBitmap != null && mCurrentBounds != null) { in update() 244 mBitmap.setBounds(mCurrentBounds); in update()
|
/frameworks/support/design/src/android/support/design/widget/ |
D | CollapsingTextHelper.java | 64 private final RectF mCurrentBounds; 117 mCurrentBounds = new RectF(); 469 mCurrentBounds.left = lerp(mExpandedBounds.left, mCollapsedBounds.left, in interpolateBounds() 471 mCurrentBounds.top = lerp(mExpandedDrawY, mCollapsedDrawY, in interpolateBounds() 473 mCurrentBounds.right = lerp(mExpandedBounds.right, mCollapsedBounds.right, in interpolateBounds() 475 mCurrentBounds.bottom = lerp(mExpandedBounds.bottom, mCollapsedBounds.bottom, in interpolateBounds() 500 canvas.drawRect(mCurrentBounds.left, y + ascent, mCurrentBounds.right, y + descent, in draw()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | NotificationStackScrollLayout.java | 282 private Rect mCurrentBounds = new Rect(-1, -1, -1, -1); field in NotificationStackScrollLayout 414 if (mCurrentBounds.top < mCurrentBounds.bottom) { in onDraw() 415 canvas.drawRect(0, mCurrentBounds.top, getWidth(), mCurrentBounds.bottom, in onDraw() 1867 if (!mCurrentBounds.equals(mBackgroundBounds)) { in updateBackground() 1877 mCurrentBounds.set(mBackgroundBounds); in updateBackground() 1902 mCurrentBounds.left = mBackgroundBounds.left; in startBackgroundAnimation() 1903 mCurrentBounds.right = mBackgroundBounds.right; in startBackgroundAnimation() 1937 mCurrentBounds.top, newEndValue); in startTopAnimation() 1951 mStartAnimationRect.top = mCurrentBounds.top; in startTopAnimation() 1985 mCurrentBounds.bottom, newEndValue); in startBottomAnimation() [all …]
|