Home
last modified time | relevance | path

Searched refs:bottomRightRadius (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DPath.cpp421 …t FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius) in addRoundedRect() argument
427 || rect.width() < bottomLeftRadius.width() + bottomRightRadius.width() in addRoundedRect()
429 || rect.height() < topRightRadius.height() + bottomRightRadius.height()) { in addRoundedRect()
435 addPathForRoundedRect(rect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius); in addRoundedRect()
438 …t FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius) in addPathForRoundedRect() argument
440 …addBeziersForRoundedRect(rect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius); in addPathForRoundedRect()
447 …t FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius) in addBeziersForRoundedRect() argument
456 addLineTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height())); in addBeziersForRoundedRect()
457 if (bottomRightRadius.width() > 0 || bottomRightRadius.height() > 0) in addBeziersForRoundedRect()
458 …addBezierCurveTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height() * gCircleControl… in addBeziersForRoundedRect()
[all …]
DPath.h131 … FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
143 … FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
144 … FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShape.cpp159 …FloatSize bottomRightRadius = physicalSizeToLogical(floatSizeForLengthSize(inset.bottomRightRadius in createShape() local
160 …RoundedRect::Radii cornerRadii(topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius); in createShape()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSBasicShapes.cpp305 … String& topLeftRadius, const String& topRightRadius, const String& bottomRightRadius, const Strin… in buildInsetRadii() argument
308 bool showBottomRight = showBottomLeft || (bottomRightRadius != topLeftRadius); in buildInsetRadii()
315 radii.append(bottomRightRadius); in buildInsetRadii()
405 …updateCornerRadiusWidthAndHeight(bottomRightRadius(), bottomRightRadiusWidth, bottomRightRadiusHei… in cssText()
DBasicShapeFunctions.cpp118 … insetValue->setBottomRightRadius(CSSPrimitiveValue::create(inset->bottomRightRadius(), style)); in valueForBasicShape()
257 rect->setBottomRightRadius(convertToLengthSize(state, rectValue->bottomRightRadius())); in basicShapeForValue()
DCSSBasicShapes.h164 CSSPrimitiveValue* bottomRightRadius() const { return m_bottomRightRadius.get(); } in bottomRightRadius() function
DCSSComputedStyleDeclaration.cpp682 …RefPtrWillBeRawPtr<CSSValueList> bottomRightRadius = valuesForBorderRadiusCorner(style.borderBotto… in valueForBorderRadiusShorthand() local
690 horizontalRadii->append(bottomRightRadius->item(0)); in valueForBorderRadiusShorthand()
701 verticalRadii->append(bottomRightRadius->item(1)); in valueForBorderRadiusShorthand()
/external/chromium_org/chrome/browser/ui/cocoa/
Dbubble_view.mm76 float bottomRightRadius =
92 bottomRightCornerRadius:bottomRightRadius];
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBasicShapes.h259 const LengthSize& bottomRightRadius() const { return m_bottomRightRadius; } in bottomRightRadius() function