Searched refs:topLeftRadius (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | Path.cpp | 385 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const FloatSize& t… in addRoundedRect() argument 390 if (rect.width() < topLeftRadius.width() + topRightRadius.width() in addRoundedRect() 392 || rect.height() < topLeftRadius.height() + bottomLeftRadius.height() in addRoundedRect() 399 addPathForRoundedRect(rect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius); in addRoundedRect() 402 void Path::addPathForRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const Float… in addPathForRoundedRect() argument 404 …addBeziersForRoundedRect(rect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius); in addPathForRoundedRect() 411 void Path::addBeziersForRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const Fl… in addBeziersForRoundedRect() argument 413 moveTo(FloatPoint(rect.x() + topLeftRadius.width(), rect.y())); in addBeziersForRoundedRect() 430 addLineTo(FloatPoint(rect.x(), rect.y() + topLeftRadius.height())); in addBeziersForRoundedRect() 431 if (topLeftRadius.width() > 0 || topLeftRadius.height() > 0) in addBeziersForRoundedRect() [all …]
|
D | Path.h | 111 …void addRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRad… 121 …void addPathForRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topR… 122 …void addBeziersForRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& t…
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | bubble_view.mm | 68 float topLeftRadius = 87 topLeftCornerRadius:topLeftRadius
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | bubble_view.mm | 70 float topLeftRadius = 89 topLeftCornerRadius:topLeftRadius
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSComputedStyleDeclaration.cpp | 698 …RefPtr<CSSValueList> topLeftRadius = valuesForBorderRadiusCorner(style.borderTopLeftRadius(), styl… in valueForBorderRadiusShorthand() local 704 horizontalRadii->append(topLeftRadius->item(0)); in valueForBorderRadiusShorthand() 715 verticalRadii->append(topLeftRadius->item(1)); in valueForBorderRadiusShorthand()
|