Searched refs:usePath (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGPath.cpp88 Path* usePath;
97 usePath = zeroLengthLinecapPath(m_zeroLengthLinecapLocations[i]);
99 usePath = nonScalingStrokePath(usePath, nonScalingTransform);
100 context->fillPath(*usePath);
H A DRenderSVGShape.cpp81 Path* usePath = m_path.get(); local
84 usePath = nonScalingStrokePath(usePath, nonScalingStrokeTransform());
86 context->strokePath(*usePath);
97 Path* usePath = nonScalingStrokePath(m_path.get(), nonScalingTransform); local
99 return usePath->strokeContains(nonScalingTransform.mapPoint(point), strokeData);
391 Path* usePath = nonScalingStrokePath(m_path.get(), nonScalingTransform); local
392 FloatRect strokeBoundingRect = usePath->strokeBoundingRect(strokeData);
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp402 bool usePath = doStroke && width > 0 && local
408 usePath = true;
411 if (!usePath && paint.isAntiAlias() && !fContext->getMatrix().rectStaysRect()) {
415 usePath = true;
418 usePath = !fContext->getMatrix().preservesRightAngles();
424 usePath = true;
430 if (!usePath && pe && !strokeInfo.isDashed()) {
431 usePath = true;
434 if (usePath) {
488 bool usePath local
546 bool usePath = false; local
[all...]
/external/skia/src/gpu/
H A DSkGpuDevice.cpp436 bool usePath = doStroke && width > 0 && local
442 usePath = true;
445 if (!usePath && paint.isAntiAlias() && !fContext->getMatrix().rectStaysRect()) {
449 usePath = true;
452 usePath = !fContext->getMatrix().preservesRightAngles();
458 usePath = true;
464 if (!usePath && NULL != pe && !strokeInfo.isDashed()) {
465 usePath = true;
468 if (usePath) {
521 bool usePath local
578 bool usePath = false; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp1661 bool usePath = renderRadii && (borderStyleHasInnerDetail(edges[BSTop].borderStyle()) || borderWillArcInnerEdge(innerBorder.radii().topLeft(), innerBorder.radii().topRight())); local
1662 paintOneBorderSide(obj, graphicsContext, style, outerBorder, innerBorder, sideRect, BSTop, BSLeft, BSRight, edges, usePath ? &roundedPath : 0, bleedAvoidance, includeLogicalLeftEdge, includeLogicalRightEdge, antialias, overrideColor);
1669 bool usePath = renderRadii && (borderStyleHasInnerDetail(edges[BSBottom].borderStyle()) || borderWillArcInnerEdge(innerBorder.radii().bottomLeft(), innerBorder.radii().bottomRight())); local
1670 paintOneBorderSide(obj, graphicsContext, style, outerBorder, innerBorder, sideRect, BSBottom, BSLeft, BSRight, edges, usePath ? &roundedPath : 0, bleedAvoidance, includeLogicalLeftEdge, includeLogicalRightEdge, antialias, overrideColor);
1677 bool usePath = renderRadii && (borderStyleHasInnerDetail(edges[BSLeft].borderStyle()) || borderWillArcInnerEdge(innerBorder.radii().bottomLeft(), innerBorder.radii().topLeft())); local
1678 paintOneBorderSide(obj, graphicsContext, style, outerBorder, innerBorder, sideRect, BSLeft, BSTop, BSBottom, edges, usePath ? &roundedPath : 0, bleedAvoidance, includeLogicalLeftEdge, includeLogicalRightEdge, antialias, overrideColor);
1685 bool usePath = renderRadii && (borderStyleHasInnerDetail(edges[BSRight].borderStyle()) || borderWillArcInnerEdge(innerBorder.radii().bottomRight(), innerBorder.radii().topRight())); local
1686 paintOneBorderSide(obj, graphicsContext, style, outerBorder, innerBorder, sideRect, BSRight, BSTop, BSBottom, edges, usePath ? &roundedPath : 0, bleedAvoidance, includeLogicalLeftEdge, includeLogicalRightEdge, antialias, overrideColor);

Completed in 180 milliseconds