/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | canvas_path.cpp | 72 void NativeCanvasPath::BezierCurveTo(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y) in BezierCurveTo() function in OHOS::Ace::Framework::NativeCanvasPath 74 path2d_->BezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); in BezierCurveTo()
|
H A D | canvas_path.h | 39 void BezierCurveTo(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y);
|
H A D | canvas_renderer.h | 83 void BezierCurveTo(const BezierCurveParam& param);
|
H A D | canvas_renderer.cpp | 264 void NativeCanvasRenderer::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::Framework::NativeCanvasRenderer 266 renderingContext2DModel_->BezierCurveTo(param); in BezierCurveTo()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/ |
H A D | offscreen_canvas_pattern.h | 52 void BezierCurveTo(const BezierCurveParam& param);
|
H A D | offscreen_canvas_pattern.cpp | 119 void OffscreenCanvasPattern::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::NG::OffscreenCanvasPattern 121 offscreenPaintMethod_->BezierCurveTo(param); in BezierCurveTo()
|
H A D | canvas_rendering_context_2d_model_ng.h | 75 void BezierCurveTo(const BezierCurveParam& param) override;
|
H A D | offscreen_canvas_rendering_context_2d_model_ng.h | 72 void BezierCurveTo(const BezierCurveParam& param) override;
|
H A D | offscreen_canvas_rendering_context_2d_model_ng.cpp | 258 void OffscreenCanvasRenderingContext2DModelNG::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::NG::OffscreenCanvasRenderingContext2DModelNG 261 pattern_->BezierCurveTo(param); in BezierCurveTo()
|
H A D | canvas_pattern.h | 110 void BezierCurveTo(const BezierCurveParam& param);
|
H A D | canvas_paint_op.cpp | 46 method->BezierCurveTo(param); in Draw()
|
H A D | rendering_context_2d_model.h | 76 virtual void BezierCurveTo(const BezierCurveParam& param) = 0;
|
H A D | canvas_rendering_context_2d_model_ng.cpp | 375 void CanvasRenderingContext2DModelNG::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::NG::CanvasRenderingContext2DModelNG 379 pattern->BezierCurveTo(param); in BezierCurveTo()
|
H A D | custom_paint_paint_method.h | 88 void BezierCurveTo(const BezierCurveParam& param);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/canvas/ |
H A D | canvas_rendering_context_2d_model_impl.cpp | 243 void CanvasRenderingContext2DModelImpl::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::Framework::CanvasRenderingContext2DModelImpl 246 pattern_->BezierCurveTo(param); in BezierCurveTo()
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.cpp | 245 void OffscreenCanvasRenderingContext2DModelImpl::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::Framework::OffscreenCanvasRenderingContext2DModelImpl 248 pattern_->BezierCurveTo(param); in BezierCurveTo()
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.h | 69 void BezierCurveTo(const BezierCurveParam& param) override;
|
H A D | canvas_rendering_context_2d_model_impl.h | 69 void BezierCurveTo(const BezierCurveParam& param) override;
|
/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/ |
H A D | custom_paint_component.h | 92 void BezierCurveTo(const BezierCurveParam& param);
|
H A D | custom_paint_component.cpp | 170 void CanvasTaskPool::BezierCurveTo(const BezierCurveParam& param) in BezierCurveTo() function in OHOS::Ace::CanvasTaskPool 172 auto task = [param](RenderCustomPaint& interface, const Offset& offset) { interface.BezierCurveTo(offset, param); }; in BezierCurveTo()
|
H A D | render_custom_paint.h | 86 virtual void BezierCurveTo(const Offset& offset, const BezierCurveParam& param) = 0;
|
H A D | rosen_render_custom_paint.h | 75 void BezierCurveTo(const Offset& offset, const BezierCurveParam& param) override;
|
H A D | offscreen_canvas.h | 245 virtual void BezierCurveTo(const BezierCurveParam& param) = 0;
|
H A D | rosen_render_offscreen_canvas.h | 75 void BezierCurveTo(const BezierCurveParam& param) override;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/ |
H A D | js_canvas_path.cpp | 126 path2d_->BezierCurveTo( in JsPath2DBezierCurveTo()
|