HomeSort by relevance Sort by last modified time
    Searched defs:Path2D (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/skia/experimental/SkV8Example/
Path2D.h 20 class Path2D : SkNoncopyable {
22 Path2D() : fSkPath() {}
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/
Path2D.h 20 class Path2D : SkNoncopyable {
22 Path2D() : fSkPath() {}
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/
Path2D.h 41 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(path));
    [all...]

Completed in 130 milliseconds