Searched refs:mExcludedRect (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ScrimView.java | 46 private Rect mExcludedRect = new Rect(); field in ScrimView 97 if (mExcludedRect.top > 0) { in onDraw() 98 canvas.drawRect(0, 0, getWidth(), mExcludedRect.top, mPaint); in onDraw() 100 if (mExcludedRect.left > 0) { in onDraw() 101 canvas.drawRect(0, mExcludedRect.top, mExcludedRect.left, mExcludedRect.bottom, in onDraw() 104 if (mExcludedRect.right < getWidth()) { in onDraw() 105 canvas.drawRect(mExcludedRect.right, in onDraw() 106 mExcludedRect.top, in onDraw() 108 mExcludedRect.bottom, in onDraw() 111 if (mExcludedRect.bottom < getHeight()) { in onDraw() [all …]
|