Home
last modified time | relevance | path

Searched refs:DOMSvgText (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_svg_text.cpp20 DOMSvgText::DOMSvgText(NodeId nodeId, const std::string& nodeName) : DOMSvgBase(nodeId, nodeName) {} in DOMSvgText() function in OHOS::Ace::Framework::DOMSvgText
22 RefPtr<Component> DOMSvgText::GetSpecializedComponent() in GetSpecializedComponent()
27 void DOMSvgText::OnChildNodeAdded(const RefPtr<DOMNode>& child, int32_t slot) in OnChildNodeAdded()
32 void DOMSvgText::OnMounted(const RefPtr<DOMNode>& parentNode) in OnMounted()
45 auto svgTextNode = AceType::DynamicCast<DOMSvgText>(parentNode); in OnMounted()
52 void DOMSvgText::PrepareSpecializedComponent() in PrepareSpecializedComponent()
63 double DOMSvgText::GetRotate() const in GetRotate()
H A Ddom_svg_text.h24 class ACE_EXPORT DOMSvgText : public DOMSvgBase {
25 DECLARE_ACE_TYPE(DOMSvgText, DOMSvgBase);
28 DOMSvgText(NodeId nodeId, const std::string& nodeName);
29 ~DOMSvgText() override = default;
H A Ddom_svg_tspan.cpp22 DOMSvgTspan::DOMSvgTspan(NodeId nodeId, const std::string& nodeName) : DOMSvgText(nodeId, nodeName)… in DOMSvgTspan()
29 DOMSvgText::PrepareSpecializedComponent(); in PrepareSpecializedComponent()
H A Ddom_svg_tspan.h23 class ACE_EXPORT DOMSvgTspan final : public DOMSvgText {
24 DECLARE_ACE_TYPE(DOMSvgTspan, DOMSvgText);
H A Ddom_document.cpp214 { DOM_NODE_TAG_SVG_TEXT, &DOMNodeCreator<DOMSvgText> }, in CreateNodeWithId()