/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | decoration.cpp | 322 CanvasPath2D::CanvasPath2D(const std::string& cmds) in CanvasPath2D() function in OHOS::Ace::CanvasPath2D 329 CanvasPath2D::CanvasPath2D(const RefPtr<CanvasPath2D>& path) in CanvasPath2D() function in OHOS::Ace::CanvasPath2D 337 void CanvasPath2D::AddPath(const RefPtr<CanvasPath2D>& path) in AddPath() 357 void CanvasPath2D::MoveTo(double x, double y) in MoveTo() 365 void CanvasPath2D::LineTo(double x, double y) in LineTo() 396 void CanvasPath2D::QuadraticCurveTo(double cpx, double cpy, double x, double y) in QuadraticCurveTo() 418 void CanvasPath2D::Ellipse( in Ellipse() 433 void CanvasPath2D::Rect(double x, double y, double width, double height) in Rect() 443 void CanvasPath2D::ClosePath() in ClosePath() 449 const std::vector<std::pair<PathCmd, PathArgs>>& CanvasPath2D::GetCaches() const in GetCaches() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/ |
H A D | rosen_render_offscreen_canvas.h | 60 void Stroke(const RefPtr<CanvasPath2D>& path) override; 68 void Fill(const RefPtr<CanvasPath2D>& path) override; 70 void Clip(const RefPtr<CanvasPath2D>& path) override; 84 bool IsPointInStroke(const RefPtr<CanvasPath2D>& path, double x, double y) override; 86 bool IsPointInPath(const RefPtr<CanvasPath2D>& path, double x, double y) override; 179 void ParsePath2D(const RefPtr<CanvasPath2D>& path); 180 void TranspareCmdToPath(const RefPtr<CanvasPath2D>& path);
|
H A D | offscreen_canvas.h | 225 virtual void Stroke(const RefPtr<CanvasPath2D>& path) = 0; 238 virtual void Fill(const RefPtr<CanvasPath2D>& path) = 0; 240 virtual void Clip(const RefPtr<CanvasPath2D>& path) = 0; 254 virtual bool IsPointInStroke(const RefPtr<CanvasPath2D>& path, double x, double y) = 0; 256 virtual bool IsPointInPath(const RefPtr<CanvasPath2D>& path, double x, double y) = 0;
|
H A D | custom_paint_component.h | 99 void Fill(const RefPtr<CanvasPath2D>& path); 101 void Stroke(const RefPtr<CanvasPath2D>& path); 103 void Clip(const RefPtr<CanvasPath2D>& path);
|
H A D | rosen_render_custom_paint.h | 82 void Fill(const Offset& offset, const RefPtr<CanvasPath2D>& path) override; 84 void Stroke(const Offset& offset, const RefPtr<CanvasPath2D>& path) override; 86 void Clip(const RefPtr<CanvasPath2D>& path) override; 167 void ParsePath2D(const Offset& offset, const RefPtr<CanvasPath2D>& path);
|
H A D | render_custom_paint.h | 94 virtual void Fill(const Offset& offset, const RefPtr<CanvasPath2D>& path) = 0; 96 virtual void Stroke(const Offset& offset, const RefPtr<CanvasPath2D>& path) = 0; 98 virtual void Clip(const RefPtr<CanvasPath2D>& path) = 0;
|
H A D | custom_paint_component.cpp | 213 void CanvasTaskPool::Fill(const RefPtr<CanvasPath2D>& path) in Fill() 225 void CanvasTaskPool::Stroke(const RefPtr<CanvasPath2D>& path) in Stroke() 237 void CanvasTaskPool::Clip(const RefPtr<CanvasPath2D>& path) in Clip()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/ |
H A D | js_canvas_path.h | 39 RefPtr<CanvasPath2D> GetCanvasPath2d() const in GetCanvasPath2d() 43 void SetCanvasPath2d(RefPtr<CanvasPath2D> path2d) in SetCanvasPath2d() 69 RefPtr<CanvasPath2D> path2d_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | canvas_path.h | 44 RefPtr<CanvasPath2D> GetCanvasPath2d() const in GetCanvasPath2d() 50 RefPtr<CanvasPath2D> path2d_;
|
H A D | canvas_path.cpp | 26 path2d_ = AceType::MakeRefPtr<CanvasPath2D>(); in NativeCanvasPath() 31 path2d_ = AceType::MakeRefPtr<CanvasPath2D>(capStr); in NativeCanvasPath()
|
H A D | canvas_renderer.cpp | 59 RefPtr<CanvasPath2D> NativeCanvasRenderer::MakePath2D(const std::string& capStr) in MakePath2D() 61 return AceType::MakeRefPtr<CanvasPath2D>(capStr); in MakePath2D()
|
H A D | canvas_renderer.h | 47 static RefPtr<CanvasPath2D> MakePath2D(const std::string& capStr);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/ |
H A D | offscreen_canvas_pattern.h | 39 void Fill(const RefPtr<CanvasPath2D>& path); 41 void Stroke(const RefPtr<CanvasPath2D>& path); 43 void Clip(const RefPtr<CanvasPath2D>& path);
|
H A D | offscreen_canvas_rendering_context_2d_model_ng.h | 78 …void SetFillRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri… 79 …void SetStrokeRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) over… 82 …void SetClipRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri…
|
H A D | canvas_rendering_context_2d_model_ng.h | 81 …void SetFillRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri… 82 …void SetStrokeRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) over… 85 …void SetClipRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri…
|
H A D | canvas_pattern.h | 97 void Fill(const RefPtr<CanvasPath2D>& path); 99 void Stroke(const RefPtr<CanvasPath2D>& path); 101 void Clip(const RefPtr<CanvasPath2D>& path);
|
H A D | rendering_context_2d_model.h | 82 …virtual void SetFillRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path… 83 …virtual void SetStrokeRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& pa… 86 …virtual void SetClipRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path…
|
H A D | custom_paint_paint_method.h | 75 void Fill(const RefPtr<CanvasPath2D>& path); 77 void Stroke(const RefPtr<CanvasPath2D>& path); 79 void Clip(const RefPtr<CanvasPath2D>& path); 310 void ParsePath2D(const RefPtr<CanvasPath2D>& path);
|
H A D | offscreen_canvas_pattern.cpp | 54 void OffscreenCanvasPattern::Fill(const RefPtr<CanvasPath2D>& path) in Fill() 64 void OffscreenCanvasPattern::Stroke(const RefPtr<CanvasPath2D>& path) in Stroke() 74 void OffscreenCanvasPattern::Clip(const RefPtr<CanvasPath2D>& path) in Clip()
|
H A D | canvas_paint_op.h | 137 explicit Fill2DOp(const RefPtr<CanvasPath2D>& path): path(path) {} in Fill2DOp() 138 RefPtr<CanvasPath2D> path; 235 explicit Stroke2DOp(const RefPtr<CanvasPath2D>& path): path(path) {} in Stroke2DOp() 236 RefPtr<CanvasPath2D> path; 254 explicit Clip2DOp(const RefPtr<CanvasPath2D>& path): path(path) {} in Clip2DOp() 255 RefPtr<CanvasPath2D> path;
|
H A D | offscreen_canvas_rendering_context_2d_model_ng.cpp | 300 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetFillRuleForPath2D() 308 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetStrokeRuleForPath2D() 332 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetClipRuleForPath2D()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/canvas/ |
H A D | canvas_rendering_context_2d_model_impl.h | 75 …void SetFillRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri… 76 …void SetStrokeRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) over… 79 …void SetClipRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri…
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.h | 75 …void SetFillRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri… 76 …void SetStrokeRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) over… 79 …void SetClipRuleForPath2D(const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) overri…
|
H A D | canvas_rendering_context_2d_model_impl.cpp | 288 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetFillRuleForPath2D() 296 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetStrokeRuleForPath2D() 318 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetClipRuleForPath2D()
|
H A D | offscreen_canvas_rendering_context_2d_model_impl.cpp | 289 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetFillRuleForPath2D() 297 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetStrokeRuleForPath2D() 319 const CanvasFillRule& fillRule, const RefPtr<CanvasPath2D>& path) in SetClipRuleForPath2D()
|