Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_svg_animate.h25 class ACE_EXPORT DOMSvgAnimate : public DOMNode {
26 DECLARE_ACE_TYPE(DOMSvgAnimate, DOMNode);
29 DOMSvgAnimate(NodeId nodeId, const std::string& nodeName);
30 ~DOMSvgAnimate() override = default;
H A Ddom_svg_animate.cpp30 DOMSvgAnimate::DOMSvgAnimate(NodeId nodeId, const std::string& nodeName) : DOMNode(nodeId, nodeName… in DOMSvgAnimate() function in OHOS::Ace::Framework::DOMSvgAnimate
32 void DOMSvgAnimate::PrepareSpecializedComponent() in PrepareSpecializedComponent()
40 void DOMSvgAnimate::SetAnimateAttrs() in SetAnimateAttrs()
70 CalcMode DOMSvgAnimate::ConvertCalcMode(const std::string& val) const in ConvertCalcMode()
H A Ddom_svg_animate_motion.h23 class ACE_EXPORT DOMSvgAnimateMotion final : public DOMSvgAnimate {
24 DECLARE_ACE_TYPE(DOMSvgAnimateMotion, DOMSvgAnimate);
27 …DOMSvgAnimateMotion(NodeId nodeId, const std::string& nodeName) : DOMSvgAnimate(nodeId, nodeName) … in DOMSvgAnimateMotion()
H A Ddom_svg_animate_transform.h23 class ACE_EXPORT DOMSvgAnimateTransform final : public DOMSvgAnimate {
24 DECLARE_ACE_TYPE(DOMSvgAnimateTransform, DOMSvgAnimate);
27 …DOMSvgAnimateTransform(NodeId nodeId, const std::string& nodeName) : DOMSvgAnimate(nodeId, nodeNam… in DOMSvgAnimateTransform()
H A Ddom_svg_animate_transform.cpp26 DOMSvgAnimate::SetAnimateAttrs(); in PrepareSpecializedComponent()
H A Ddom_svg_animate_motion.cpp27 DOMSvgAnimate::SetAnimateAttrs(); in PrepareSpecializedComponent()
H A Ddom_document.cpp133 { DOM_NODE_TAG_ANIMATE, &DOMNodeCreator<DOMSvgAnimate> }, in CreateNodeWithId()