Searched refs:DOMSvgText (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_svg_text.cpp | 20 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 D | dom_svg_text.h | 24 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 D | dom_svg_tspan.cpp | 22 DOMSvgTspan::DOMSvgTspan(NodeId nodeId, const std::string& nodeName) : DOMSvgText(nodeId, nodeName)… in DOMSvgTspan() 29 DOMSvgText::PrepareSpecializedComponent(); in PrepareSpecializedComponent()
|
H A D | dom_svg_tspan.h | 23 class ACE_EXPORT DOMSvgTspan final : public DOMSvgText { 24 DECLARE_ACE_TYPE(DOMSvgTspan, DOMSvgText);
|
H A D | dom_document.cpp | 214 { DOM_NODE_TAG_SVG_TEXT, &DOMNodeCreator<DOMSvgText> }, in CreateNodeWithId()
|