• Home
  • Raw
  • Download

Lines Matching refs:Path2DBuilder

15 Global* Path2DBuilder::gGlobal = NULL;
17 void Path2DBuilder::ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args) { in ConstructPath()
19 Path2DBuilder* path = new Path2DBuilder(); in ConstructPath()
33 void Path2DBuilder::AddToGlobal(Global* global) { in AddToGlobal()
45 gGlobal->getIsolate(), Path2DBuilder::ConstructPath); in AddToGlobal()
64 Path2DBuilder* Path2DBuilder::Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args) { in Unwrap()
68 return static_cast<Path2DBuilder*>(ptr); in Unwrap()
71 void Path2DBuilder::ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args) { in ClosePath()
72 Path2DBuilder* path = Unwrap(args); in ClosePath()
76 void Path2DBuilder::MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in MoveTo()
85 Path2DBuilder* path = Unwrap(args); in MoveTo()
89 void Path2DBuilder::LineTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in LineTo()
98 Path2DBuilder* path = Unwrap(args); in LineTo()
102 void Path2DBuilder::QuadraticCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in QuadraticCurveTo()
113 Path2DBuilder* path = Unwrap(args); in QuadraticCurveTo()
121 void Path2DBuilder::BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in BezierCurveTo()
134 Path2DBuilder* path = Unwrap(args); in BezierCurveTo()
143 void Path2DBuilder::Arc(const v8::FunctionCallbackInfo<v8::Value>& args) { in Arc()
167 Path2DBuilder* path = Unwrap(args); in Arc()
179 void Path2DBuilder::Rect(const v8::FunctionCallbackInfo<v8::Value>& args) { in Rect()
197 Path2DBuilder* path = Unwrap(args); in Rect()
201 void Path2DBuilder::Oval(const v8::FunctionCallbackInfo<v8::Value>& args) { in Oval()
216 Path2DBuilder* path = Unwrap(args); in Oval()
227 void Path2DBuilder::ConicTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in ConicTo()
239 Path2DBuilder* path = Unwrap(args); in ConicTo()
250 void Path2DBuilder::Finalize(const v8::FunctionCallbackInfo<v8::Value>& args) { in Finalize()
251 Path2DBuilder* path = Unwrap(args); in Finalize()