Home
last modified time | relevance | path

Searched refs:TextComponentV2 (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text/
H A Dtext_component_v2.h24 class ACE_EXPORT TextComponentV2 : public TextComponent {
25 DECLARE_ACE_TYPE(TextComponentV2, TextComponent);
28 explicit TextComponentV2(const std::string& data) : TextComponent(data) {} in TextComponentV2() function
29 ~TextComponentV2() override = default;
H A Dtext_component_v2.cpp23 void TextComponentV2::OnChildInserted(const RefPtr<Component>& child, int32_t position) in OnChildInserted()
28 void TextComponentV2::OnChildAppended(const RefPtr<Component>& child) in OnChildAppended()
33 void TextComponentV2::CheckAndSetChildStyle(const RefPtr<Component>& child) in CheckAndSetChildStyle()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text_clock/
H A Dtext_clock_component.h31 class ACE_EXPORT TextClockComponent : public TextComponentV2 {
32 DECLARE_ACE_TYPE(TextClockComponent, TextComponentV2);
35 explicit TextClockComponent(const std::string& data) : TextComponentV2(data) {} in TextClockComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dtext_model_impl.cpp31 auto textComponent = AceType::MakeRefPtr<TextComponentV2>(content); in Create()
259 RefPtr<TextComponentV2> TextModelImpl::GetComponent() in GetComponent()
265 auto component = AceType::DynamicCast<TextComponentV2>(stack->GetMainComponent()); in GetComponent()
H A Dtext_model_impl.h85 static RefPtr<TextComponentV2> GetComponent();
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/coverage/
H A Dcoverage_component.cpp32 textComponent_ = AceType::MakeRefPtr<OHOS::Ace::TextComponentV2>(""); in CoverageComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_text.h93 static RefPtr<TextComponentV2> GetComponent();
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/popup/
H A Dpopup_component_v2.cpp96 auto text = AceType::MakeRefPtr<TextComponentV2>(message_); in CreateMessage()