HomeSort by relevance Sort by last modified time
    Searched refs:windRule (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 104 WindRule windRule() const { return m_shape->windRule(); }
RenderBlock.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.h 62 virtual WindRule windRule() const { return RULE_NONZERO; }
219 void setWindRule(WindRule windRule) { m_windRule = windRule; }
226 virtual WindRule windRule() const OVERRIDE { return m_windRule; }
234 WindRule m_windRule;
BasicShapes.cpp 50 || toBasicShapePolygon(this)->windRule() != toBasicShapePolygon(other)->windRule()))
201 result->setWindRule(o->windRule());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.h 78 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
114 WindRule windRule() const;
115 void setWindRule(const WindRule);
Path.cpp 69 bool Path::contains(const FloatPoint& point, WindRule rule) const
271 WindRule Path::windRule() const
278 void Path::setWindRule(const WindRule rule)
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 99 polygonValue->setWindRule(polygon->windRule());
238 polygon->setWindRule(polygonValue->windRule());
CSSBasicShapes.h 134 void setWindRule(WindRule w) { m_windRule = w; }
135 WindRule windRule() const { return m_windRule; }
150 WindRule m_windRule;
CSSBasicShapes.cpp 230 static String buildPolygonString(const WindRule& windRule, const Vector<String>& points, const String& box)
252 if (windRule == RULE_EVENODD)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 139 m_paintInfo->context->clipPath(clipPath->path(object->objectBoundingBox()), clipPath->windRule());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 68 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
142 shape = createPolygonShape(vertices.release(), polygon->windRule());
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 990 static WindRule parseWinding(const String& windingRuleString)
1024 WindRule windRule = c->fillRule();
1042 c->setFillRule(windRule);
    [all...]

Completed in 758 milliseconds