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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 103 WindRule windRule() const { return m_shape->windRule(); }
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.h 34 #include "platform/graphics/WindRule.h"
59 virtual WindRule windRule() const { return RULE_NONZERO; }
167 void setWindRule(WindRule windRule) { m_windRule = windRule; }
173 virtual WindRule windRule() const { return m_windRule; }
181 WindRule m_windRule;
BasicShapes.cpp 171 result->setWindRule(o->windRule());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.h 34 #include "platform/graphics/WindRule.h"
78 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
95 WindRule windRule() const;
96 void setWindRule(const WindRule);
Path.cpp 70 bool Path::contains(const FloatPoint& point, WindRule rule) const
235 WindRule Path::windRule() const
242 void Path::setWindRule(const WindRule rule)
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 89 polygonValue->setWindRule(polygon->windRule());
176 polygon->setWindRule(polygonValue->windRule());
CSSBasicShapes.cpp 183 static String buildPolygonString(const WindRule& windRule, const Vector<String>& points)
203 if (windRule == RULE_EVENODD)
CSSBasicShapes.h 34 #include "platform/graphics/WindRule.h"
208 void setWindRule(WindRule w) { m_windRule = w; }
209 WindRule windRule() const { return m_windRule; }
224 WindRule m_windRule;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 138 m_paintInfo->context->clipPath(clipPath->path(object->objectBoundingBox()), clipPath->windRule());
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 873 static bool parseWinding(const String& windingRuleString, WindRule& windRule)
876 windRule = RULE_NONZERO;
878 windRule = RULE_EVENODD;
902 WindRule windRule = c->fillRule();
903 WindRule newWindRule = RULE_NONZERO;
923 c->setFillRule(windRule);
959 WindRule newWindRule = RULE_NONZERO;
981 WindRule windRule = RULE_NONZERO
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 42 #include "platform/graphics/WindRule.h"
72 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
181 shape = createPolygonShape(vertices.release(), polygon->windRule());

Completed in 70 milliseconds