Home
last modified time | relevance | path

Searched refs:Path2D (Results 1 – 25 of 85) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DPath2D.h41 class Path2D FINAL : public RefCounted<Path2D>, public CanvasPathMethods, public ScriptWrappable {
42 WTF_MAKE_NONCOPYABLE(Path2D); WTF_MAKE_FAST_ALLOCATED;
44 static PassRefPtr<Path2D> create() { return adoptRef(new Path2D); } in create()
45 …static PassRefPtr<Path2D> create(const String& pathData) { return adoptRef(new Path2D(pathData)); } in create()
46 static PassRefPtr<Path2D> create(Path2D* path) { return adoptRef(new Path2D(path)); } in create()
48 static PassRefPtr<Path2D> create(const Path& path) { return adoptRef(new Path2D(path)); } in create()
52 void addPath(Path2D* path) in addPath()
57 void addPath(Path2D* path, SVGMatrixTearOff* transform) in addPath()
62 virtual ~Path2D() { } in ~Path2D()
64 Path2D() : CanvasPathMethods() in Path2D() function
[all …]
DPath2D.idl33 Constructor(Path2D path),
35 RuntimeEnabled=Path2D,
36 ] interface Path2D {
38 …xperimentalCanvasFeatures, TypeChecking=Interface|Nullable] void addPath(Path2D path, optional SVG…
41 Path2D implements CanvasPathMethods;
DCanvasRenderingContext2D.h54 class Path2D; variable
153 void fill(Path2D*, const String& winding = "nonzero");
155 void stroke(Path2D*);
157 void clip(Path2D*, const String& winding = "nonzero");
160 bool isPointInPath(Path2D*, const float x, const float y, const String& winding = "nonzero");
162 bool isPointInStroke(Path2D*, const float x, const float y);
165 void scrollPathIntoView(Path2D*);
228 void drawFocusIfNeeded(Path2D*, Element*);
DCanvasRenderingContext2D.idl92 [RuntimeEnabled=Path2D] void fill(Path2D path, optional CanvasFillRule winding);
94 [RuntimeEnabled=Path2D] void stroke(Path2D path);
97 [RuntimeEnabled=Path2D] void drawFocusIfNeeded(Path2D path, Element element);
99 [RuntimeEnabled=ExperimentalCanvasFeatures] void scrollPathIntoView(optional Path2D path);
101 [RuntimeEnabled=Path2D] void clip(Path2D path, optional CanvasFillRule winding);
103 …[RuntimeEnabled=Path2D] boolean isPointInPath(Path2D path, unrestricted float x, unrestricted floa…
105 …[RuntimeEnabled=Path2D] boolean isPointInStroke(Path2D path, unrestricted float x, unrestricted fl…
DCanvasRenderingContext2D.cpp1031 void CanvasRenderingContext2D::fill(Path2D* domPath, const String& windingRuleString) in fill()
1081 void CanvasRenderingContext2D::stroke(Path2D* domPath) in stroke()
1105 void CanvasRenderingContext2D::clip(Path2D* domPath, const String& windingRuleString) in clip()
1115 bool CanvasRenderingContext2D::isPointInPath(Path2D* domPath, const float x, const float y, const S… in isPointInPath()
1142 bool CanvasRenderingContext2D::isPointInStroke(Path2D* domPath, const float x, const float y) in isPointInStroke()
1175 void CanvasRenderingContext2D::scrollPathIntoView(Path2D* path2d) in scrollPathIntoView()
2301 void CanvasRenderingContext2D::drawFocusIfNeeded(Path2D* path2d, Element* element) in drawFocusIfNeeded()
/external/chromium_org/third_party/skia/experimental/SkV8Example/
DPath2D.cpp13 Global* Path2D::gGlobal = NULL;
15 void Path2D::ConstructPath(const v8::FunctionCallbackInfo<Value>& args) { in ConstructPath()
17 Path2D* path = new Path2D(); in ConstructPath()
31 void Path2D::AddToGlobal(Global* global) { in AddToGlobal()
43 gGlobal->getIsolate(), Path2D::ConstructPath); in AddToGlobal()
60 Path2D* Path2D::Unwrap(const v8::FunctionCallbackInfo<Value>& args) { in Unwrap()
64 return static_cast<Path2D*>(ptr); in Unwrap()
67 void Path2D::ClosePath(const v8::FunctionCallbackInfo<Value>& args) { in ClosePath()
68 Path2D* path = Unwrap(args); in ClosePath()
72 void Path2D::MoveTo(const v8::FunctionCallbackInfo<Value>& args) { in MoveTo()
[all …]
DPath2D.h20 class Path2D : SkNoncopyable {
22 Path2D() : fSkPath() {} in Path2D() function
23 virtual ~Path2D() {} in ~Path2D()
47 static Path2D* Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args);
Dgears.js2 var HAS_PATH = typeof Path2D != "undefined";
27 p = new Path2D();
38 p = new Path2D();
53 p = new Path2D();
Dsnow.js2 var HAS_PATH = typeof Path2D != "undefined";
6 var p = new Path2D();
DBaseContext.cpp134 Path2D* path = static_cast<Path2D*>(ptr); in Stroke()
156 Path2D* path = static_cast<Path2D*>(ptr); in Fill()
Dpath.js5 var p = new Path2D();
DSkV8Example.cpp207 Path2D::AddToGlobal(global); in create_sk_window()
/external/skia/experimental/SkV8Example/
DPath2D.cpp13 Global* Path2D::gGlobal = NULL;
15 void Path2D::ConstructPath(const v8::FunctionCallbackInfo<Value>& args) { in ConstructPath()
17 Path2D* path = new Path2D(); in ConstructPath()
31 void Path2D::AddToGlobal(Global* global) { in AddToGlobal()
43 gGlobal->getIsolate(), Path2D::ConstructPath); in AddToGlobal()
60 Path2D* Path2D::Unwrap(const v8::FunctionCallbackInfo<Value>& args) { in Unwrap()
64 return static_cast<Path2D*>(ptr); in Unwrap()
67 void Path2D::ClosePath(const v8::FunctionCallbackInfo<Value>& args) { in ClosePath()
68 Path2D* path = Unwrap(args); in ClosePath()
72 void Path2D::MoveTo(const v8::FunctionCallbackInfo<Value>& args) { in MoveTo()
[all …]
DPath2D.h20 class Path2D : SkNoncopyable {
22 Path2D() : fSkPath() {} in Path2D() function
23 virtual ~Path2D() {} in ~Path2D()
47 static Path2D* Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args);
Dgears.js2 var HAS_PATH = typeof Path2D != "undefined";
27 p = new Path2D();
38 p = new Path2D();
53 p = new Path2D();
Dsnow.js2 var HAS_PATH = typeof Path2D != "undefined";
6 var p = new Path2D();
DBaseContext.cpp134 Path2D* path = static_cast<Path2D*>(ptr); in Stroke()
156 Path2D* path = static_cast<Path2D*>(ptr); in Fill()
Dpath.js5 var p = new Path2D();
DSkV8Example.cpp207 Path2D::AddToGlobal(global); in create_sk_window()
/external/chromium_org/third_party/skia/gyp/
Dv8.gyp17 '../experimental/SkV8Example/Path2D.cpp',
18 '../experimental/SkV8Example/Path2D.h',
/external/skia/gyp/
Dv8.gyp17 '../experimental/SkV8Example/Path2D.cpp',
18 '../experimental/SkV8Example/Path2D.h',
/external/chromium_org/third_party/WebKit/Source/platform/
DRuntimeEnabledFeatures.in96 Path2D status=stable
/external/chromium_org/third_party/WebKit/Source/bindings/core/
Dcore_global_objects_idl_files_list.tmp231 ../../core/html/canvas/Path2D.idl
Dcore_idl_files_list.tmp231 ../../core/html/canvas/Path2D.idl
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
Dcore_idl_files_list.tmp231 ../../../core/html/canvas/Path2D.idl

1234