Searched refs:bottomRoundness (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableOutlineView.java | 133 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 …]
|
D | NotificationBackgroundView.java | 230 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()
|
D | ExpandableView.java | 802 public boolean setBottomRoundness(float bottomRoundness, boolean animate) { in setBottomRoundness() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationRoundnessManager.java | 92 float bottomRoundness = getRoundness(view, false /* top */); in updateViewWithoutCallback() local 94 boolean bottomChanged = view.setBottomRoundness(bottomRoundness, animate); in updateViewWithoutCallback()
|
D | NotificationChildrenContainer.java | 1294 float bottomRoundness = last ? currentBottomRoundness : 0.0f; 1295 child.setBottomRoundness(bottomRoundness, isShown() /* animate */);
|