Searched refs:bottomRightRadius (Results 1 - 17 of 17) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DPath.cpp156 void Path::addBeziersForRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius) argument
165 addLineTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height()));
166 if (bottomRightRadius.width() > 0 || bottomRightRadius.height() > 0)
167 addBezierCurveTo(FloatPoint(rect.maxX(), rect.maxY() - bottomRightRadius.height() * gCircleControlPoint),
168 FloatPoint(rect.maxX() - bottomRightRadius.width() * gCircleControlPoint, rect.maxY()),
169 FloatPoint(rect.maxX() - bottomRightRadius.width(), rect.maxY()));
H A DPath.h149 void addBeziersForRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
152 void platformAddPathForRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DWKContentViewInteraction.h122 WebCore::IntSize bottomRightRadius; member in struct:TapHighlightInformation
164 - (void)_didGetTapHighlightForRequest:(uint64_t)requestID color:(const WebCore::Color&)color quads:(const Vector<WebCore::FloatQuad>&)highlightedQuads topLeftRadius:(const WebCore::IntSize&)topLeftRadius topRightRadius:(const WebCore::IntSize&)topRightRadius bottomLeftRadius:(const WebCore::IntSize&)bottomLeftRadius bottomRightRadius:(const WebCore::IntSize&)bottomRightRadius;
H A DPageClientImplIOS.mm484 void PageClientImpl::didGetTapHighlightGeometries(uint64_t requestID, const WebCore::Color& color, const Vector<WebCore::FloatQuad>& highlightedQuads, const WebCore::IntSize& topLeftRadius, const WebCore::IntSize& topRightRadius, const WebCore::IntSize& bottomLeftRadius, const WebCore::IntSize& bottomRightRadius)
486 [m_contentView _didGetTapHighlightForRequest:requestID color:color quads:highlightedQuads topLeftRadius:topLeftRadius topRightRadius:topRightRadius bottomLeftRadius:bottomLeftRadius bottomRightRadius:bottomRightRadius];
H A DPageClientImplIOS.h112 virtual void didGetTapHighlightGeometries(uint64_t requestID, const WebCore::Color&, const Vector<WebCore::FloatQuad>& highlightedQuads, const WebCore::IntSize& topLeftRadius, const WebCore::IntSize& topRightRadius, const WebCore::IntSize& bottomLeftRadius, const WebCore::IntSize& bottomRightRadius) override;
H A DWebPageProxyIOS.mm681 void WebPageProxy::didGetTapHighlightGeometries(uint64_t requestID, const WebCore::Color& color, const Vector<WebCore::FloatQuad>& highlightedQuads, const WebCore::IntSize& topLeftRadius, const WebCore::IntSize& topRightRadius, const WebCore::IntSize& bottomLeftRadius, const WebCore::IntSize& bottomRightRadius)
683 m_pageClient.didGetTapHighlightGeometries(requestID, color, highlightedQuads, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
H A DWKContentViewInteraction.mm609 [borderRadii addObject:nsSizeForTapHighlightBorderRadius(_tapHighlightInformation.bottomRightRadius)];
628 - (void)_didGetTapHighlightForRequest:(uint64_t)requestID color:(const WebCore::Color&)color quads:(const Vector<WebCore::FloatQuad>&)highlightedQuads topLeftRadius:(const WebCore::IntSize&)topLeftRadius topRightRadius:(const WebCore::IntSize&)topRightRadius bottomLeftRadius:(const WebCore::IntSize&)bottomLeftRadius bottomRightRadius:(const WebCore::IntSize&)bottomRightRadius
640 _tapHighlightInformation.bottomRightRadius = bottomRightRadius;
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DShape.cpp158 FloatSize bottomRightRadius = physicalSizeToLogical(floatSizeForLengthSize(inset.bottomRightRadius(), boxSize), writingMode); local
159 FloatRoundedRect::Radii cornerRadii(topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSBasicShapes.cpp280 static bool buildInsetRadii(Vector<String>& radii, const String& topLeftRadius, const String& topRightRadius, const String& bottomRightRadius, const String& bottomLeftRadius) argument
283 bool showBottomRight = showBottomLeft || (bottomRightRadius != topLeftRadius);
290 radii.append(bottomRightRadius);
387 updateCornerRadiusWidthAndHeight(bottomRightRadius(), bottomRightRadiusWidth, bottomRightRadiusHeight);
H A DBasicShapeFunctions.cpp117 insetValue->setBottomRightRadius(pool.createValue(inset->bottomRightRadius(), style));
254 rect->setBottomRightRadius(convertToLengthSize(conversionData, rectValue->bottomRightRadius()));
H A DCSSBasicShapes.h76 CSSPrimitiveValue* bottomRightRadius() const { return m_bottomRightRadius.get(); } function in class:WebCore::CSSBasicShapeInset
H A DCSSComputedStyleDeclaration.cpp742 RefPtr<CSSValueList> bottomRightRadius = getBorderRadiusCornerValues(style->borderBottomRightRadius(), style); local
750 horizontalRadii->append(bottomRightRadius->item(0));
761 verticalRadiiList->append(bottomRightRadius->item(1));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DPathCG.cpp261 void Path::platformAddPathForRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius) argument
264 bool equalWidths = (topLeftRadius.width() == topRightRadius.width() && topRightRadius.width() == bottomLeftRadius.width() && bottomLeftRadius.width() == bottomRightRadius.width());
265 bool equalHeights = (topLeftRadius.height() == bottomLeftRadius.height() && bottomLeftRadius.height() == topRightRadius.height() && topRightRadius.height() == bottomRightRadius.height());
283 addBeziersForRoundedRect(rect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DBasicShapes.h237 const LengthSize& bottomRightRadius() const { return m_bottomRightRadius; } function in class:WebCore::BasicShapeInset
H A DBasicShapes.cpp262 result->setBottomRightRadius(m_bottomRightRadius.blend(o->bottomRightRadius(), progress));
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DPageClient.h255 virtual void didGetTapHighlightGeometries(uint64_t requestID, const WebCore::Color&, const Vector<WebCore::FloatQuad>& highlightedQuads, const WebCore::IntSize& topLeftRadius, const WebCore::IntSize& topRightRadius, const WebCore::IntSize& bottomLeftRadius, const WebCore::IntSize& bottomRightRadius) = 0;
H A DWebPageProxy.h1226 void didGetTapHighlightGeometries(uint64_t requestID, const WebCore::Color& color, const Vector<WebCore::FloatQuad>& geometries, const WebCore::IntSize& topLeftRadius, const WebCore::IntSize& topRightRadius, const WebCore::IntSize& bottomLeftRadius, const WebCore::IntSize& bottomRightRadius);

Completed in 150 milliseconds