Home
last modified time | relevance | path

Searched refs:bottomRoundness (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableOutlineView.java133 float bottomRoundness = mAlwaysRoundBothCorners in getClipPath() local
135 if (topRoundness + bottomRoundness > height) { in getClipPath()
136 float overShoot = topRoundness + bottomRoundness - height; in getClipPath()
139 bottomRoundness -= overShoot * mCurrentBottomRoundness in getClipPath()
142 getRoundedRectPath(left, top, right, bottom, topRoundness, bottomRoundness, mTmpPath); in getClipPath()
147 float topRoundness, float bottomRoundness, Path outPath) { in getRoundedRectPath() argument
153 mTmpCornerRadii[4] = bottomRoundness; in getRoundedRectPath()
154 mTmpCornerRadii[5] = bottomRoundness; in getRoundedRectPath()
155 mTmpCornerRadii[6] = bottomRoundness; in getRoundedRectPath()
156 mTmpCornerRadii[7] = bottomRoundness; in getRoundedRectPath()
[all …]
DNotificationBackgroundView.java230 public void setRoundness(float topRoundness, float bottomRoundness) { in setRoundness() argument
231 if (topRoundness == mCornerRadii[0] && bottomRoundness == mCornerRadii[4]) { in setRoundness()
234 mBottomIsRounded = bottomRoundness != 0.0f; in setRoundness()
239 mCornerRadii[4] = bottomRoundness; in setRoundness()
240 mCornerRadii[5] = bottomRoundness; in setRoundness()
241 mCornerRadii[6] = bottomRoundness; in setRoundness()
242 mCornerRadii[7] = bottomRoundness; in setRoundness()
DExpandableView.java802 public boolean setBottomRoundness(float bottomRoundness, boolean animate) { in setBottomRoundness() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationRoundnessManager.java92 float bottomRoundness = getRoundness(view, false /* top */); in updateViewWithoutCallback() local
94 boolean bottomChanged = view.setBottomRoundness(bottomRoundness, animate); in updateViewWithoutCallback()
DNotificationChildrenContainer.java1294 float bottomRoundness = last ? currentBottomRoundness : 0.0f;
1295 child.setBottomRoundness(bottomRoundness, isShown() /* animate */);