Home
last modified time | relevance | path

Searched refs:SvgFeColorMatrix (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/
H A Dsvg_fe_color_matrix.cpp51 RefPtr<SvgNode> SvgFeColorMatrix::Create() in Create()
53 return AceType::MakeRefPtr<SvgFeColorMatrix>(); in Create()
56 SvgFeColorMatrix::SvgFeColorMatrix() : SvgFe() {} in SvgFeColorMatrix() function in OHOS::Ace::NG::SvgFeColorMatrix
58 void SvgFeColorMatrix::MakeMatrix(const std::string& value) in MakeMatrix()
71 void SvgFeColorMatrix::MakeHueRotate(const std::string& value) in MakeHueRotate()
101 void SvgFeColorMatrix::MakeSaturate(const std::string& value) in MakeSaturate()
114 void SvgFeColorMatrix::MakeLuminanceToAlpha() in MakeLuminanceToAlpha()
119 void SvgFeColorMatrix::OnInitStyle() in OnInitStyle()
138 void SvgFeColorMatrix::OnAsImageFilter(std::shared_ptr<RSImageFilter>& imageFilter, in OnAsImageFilter()
154 bool SvgFeColorMatrix::ParseAndSetSpecializedAttr(const std::string& name, const std::string& value) in ParseAndSetSpecializedAttr()
H A Dsvg_fe_color_matrix.h23 class SvgFeColorMatrix : public SvgFe {
24 DECLARE_ACE_TYPE(SvgFeColorMatrix, SvgFe);
27 SvgFeColorMatrix();
28 ~SvgFeColorMatrix() override = default;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/parse/
H A Dsvg_fe_colormatrix.cpp22 RefPtr<SvgNode> SvgFeColorMatrix::Create() in Create()
24 return AceType::MakeRefPtr<SvgFeColorMatrix>(); in Create()
27 SvgFeColorMatrix::SvgFeColorMatrix() : SvgNode() in SvgFeColorMatrix() function in OHOS::Ace::SvgFeColorMatrix
32 void SvgFeColorMatrix::SetAttr(const std::string& name, const std::string& value) in SetAttr()
39 void SvgFeColorMatrix::AppendChild(const RefPtr<SvgNode>& child) in AppendChild()
44 RefPtr<RenderNode> SvgFeColorMatrix::CreateRender( in CreateRender()
H A Dsvg_fe_colormatrix.h24 class SvgFeColorMatrix : public SvgNode {
25 DECLARE_ACE_TYPE(SvgFeColorMatrix, SvgNode);
28 SvgFeColorMatrix();
29 ~SvgFeColorMatrix() override = default;
H A Dsvg_dom.cpp59 { "feColorMatrix", []() -> RefPtr<SvgNode> { return SvgFeColorMatrix::Create(); } }, in __anon3de6db050902()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/svg/
H A Dparse_test_ng.cpp1148 SvgFeColorMatrix* colorMatrix = new SvgFeColorMatrix();
1181 auto svgFeColorMatrix = AceType::DynamicCast<SvgFeColorMatrix>(svgFilter->children_.at(0));
1212 auto svgFeColorMatrix1 = AceType::DynamicCast<SvgFeColorMatrix>(svgFilter->children_.at(0));
1218 auto svgFeColorMatrix2 = AceType::DynamicCast<SvgFeColorMatrix>(svgFilter->children_.at(1));
1224 auto svgFeColorMatrix3 = AceType::DynamicCast<SvgFeColorMatrix>(svgFilter->children_.at(2));
1230 auto svgFeColorMatrix4 = AceType::DynamicCast<SvgFeColorMatrix>(svgFilter->children_.at(3));
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/
H A Dsvg_dom.cpp67 { "feColorMatrix", []() -> RefPtr<SvgNode> { return SvgFeColorMatrix::Create(); } }, in __anonfe503baf0a02()