Home
last modified time | relevance | path

Searched refs:RULE_NONZERO (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DWindRule.h34 RULE_NONZERO = 0, enumerator
DGraphicsContextState.h54 , m_fillRule(RULE_NONZERO) in GraphicsContextState()
DPath.h78 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
DPath.cpp72 …return SkPathContainsPoint(m_path, point, rule == RULE_NONZERO ? SkPath::kWinding_FillType : SkPat… in contains()
239 : RULE_NONZERO; in windRule()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBasicShapes.h59 virtual WindRule windRule() const { return RULE_NONZERO; } in windRule()
178 : m_windRule(RULE_NONZERO) in BasicShapePolygon()
DSVGRenderStyle.h63 static WindRule initialClipRule() { return RULE_NONZERO; } in initialClipRule()
67 static WindRule initialFillRule() { return RULE_NONZERO; } in initialFillRule()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResourceSolidColor.cpp64 context->setFillRule(svgStyle ? svgStyle->fillRule() : RULE_NONZERO); in applyResource()
DRenderSVGShape.h85 … fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
DSVGRenderTreeAsText.cpp146 case RULE_NONZERO: in operator <<()
297 writeIfNotDefault(ts, "fill rule", svgStyle->fillRule(), RULE_NONZERO); in writeStyle()
300 writeIfNotDefault(ts, "clip rule", svgStyle->clipRule(), RULE_NONZERO); in writeStyle()
DRenderSVGResourceClipper.cpp89 WindRule clipRule = RULE_NONZERO; in tryPathOnlyClipping()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSBasicShapes.h219 : m_windRule(RULE_NONZERO) in CSSBasicShapePolygon()
DCSSPrimitiveValueMappings.h4020 case RULE_NONZERO: in CSSPrimitiveValue()
4034 return RULE_NONZERO; in WindRule()
4042 return RULE_NONZERO; in WindRule()
DCSSParser-in.cpp5285 shape->setWindRule(argument->id == CSSValueEvenodd ? RULE_EVENODD : RULE_NONZERO); in parseBasicShapePolygon()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DFloatPolygon.cpp199 return (fillRule() == RULE_NONZERO) ? containsNonZero(point) : containsEvenOdd(point); in contains()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasRenderingContext2D.cpp876 windRule = RULE_NONZERO; in parseWinding()
903 WindRule newWindRule = RULE_NONZERO; in fill()
959 WindRule newWindRule = RULE_NONZERO; in clip()
981 WindRule windRule = RULE_NONZERO; in isPointInPath()
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DPolygonShape.cpp300 if (edgeCrossing && polygon.fillRule() == RULE_NONZERO) { in computeXIntersections()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBoxModelObject.cpp1868 graphicsContext->setFillRule(RULE_NONZERO); in paintBorder()