Searched refs:domPath (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | CanvasRenderingContext2D.cpp | 1031 void CanvasRenderingContext2D::fill(Path2D* domPath, const String& windingRuleString) in fill() argument 1033 fillInternal(domPath->path(), windingRuleString); in fill() 1081 void CanvasRenderingContext2D::stroke(Path2D* domPath) in stroke() argument 1083 strokeInternal(domPath->path()); in stroke() 1105 void CanvasRenderingContext2D::clip(Path2D* domPath, const String& windingRuleString) in clip() argument 1107 clipInternal(domPath->path(), windingRuleString); in clip() 1115 bool CanvasRenderingContext2D::isPointInPath(Path2D* domPath, const float x, const float y, const S… in isPointInPath() argument 1117 return isPointInPathInternal(domPath->path(), x, y, windingRuleString); in isPointInPath() 1142 bool CanvasRenderingContext2D::isPointInStroke(Path2D* domPath, const float x, const float y) in isPointInStroke() argument 1144 return isPointInStrokeInternal(domPath->path(), x, y); in isPointInStroke()
|