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 104 WindRule windRule() const { return m_shape->windRule(); }
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.h 34 #include "core/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/core/platform/graphics/
Path.h 33 #include "core/platform/graphics/WindRule.h"
77 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
94 WindRule windRule() const;
95 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 86 polygonValue->setWindRule(polygon->windRule());
173 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 "core/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/shapes/
Shape.cpp 35 #include "core/platform/graphics/WindRule.h"
62 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
167 shape = createPolygonShape(vertices.release(), polygon->windRule());
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 863 static bool parseWinding(const String& windingRuleString, WindRule& windRule)
866 windRule = RULE_NONZERO;
868 windRule = RULE_EVENODD;
889 WindRule windRule = c->fillRule();
890 WindRule newWindRule = RULE_NONZERO;
907 c->setFillRule(windRule);
941 WindRule newWindRule = RULE_NONZERO;
963 WindRule windRule = RULE_NONZERO
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 123 m_paintInfo->context->clipPath(clipPath->path(object->objectBoundingBox()), clipPath->windRule());

Completed in 172 milliseconds