Searched defs:Path2D (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DPath2D.h20 class Path2D : SkNoncopyable { class in inherits:SkNoncopyable
22 Path2D() : fSkPath() {} function in class:Path2D
23 virtual ~Path2D() {}
27 // The JS Path2D constuctor implementation.
30 // Add the Path2D JS constructor to the global context.
33 // Path2D JS methods.
47 static Path2D* Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/skia/experimental/SkV8Example/
H A DPath2D.h20 class Path2D : SkNoncopyable { class in inherits:SkNoncopyable
22 Path2D() : fSkPath() {} function in class:Path2D
23 virtual ~Path2D() {}
27 // The JS Path2D constuctor implementation.
30 // Add the Path2D JS constructor to the global context.
33 // Path2D JS methods.
47 static Path2D* Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A 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); }
45 static PassRefPtr<Path2D> create(const String& pathData) { return adoptRef(new Path2D(pathData)); }
46 static PassRefPtr<Path2D> create(Path2D* path) { return adoptRef(new Path2D(pat
64 Path2D() : CanvasPathMethods() function in class:WebCore::FINAL
69 Path2D(const Path& path) function in class:WebCore::FINAL
75 Path2D(Path2D* path) function in class:WebCore::FINAL
81 Path2D(const String& pathData) function in class:WebCore::FINAL
[all...]

Completed in 146 milliseconds