Home
last modified time | relevance | path

Searched refs:textHost (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/progress/
H A Dprogress_model_ng.cpp169 CHECK_NULL_VOID(textHost); in SetFontSize()
182 CHECK_NULL_VOID(textHost); in SetFontColor()
195 CHECK_NULL_VOID(textHost); in SetText()
220 textHost->MarkModifyDone(); in SetText()
230 CHECK_NULL_VOID(textHost); in SetFontWeight()
243 CHECK_NULL_VOID(textHost); in SetFontFamily()
256 CHECK_NULL_VOID(textHost); in SetItalicFontStyle()
447 CHECK_NULL_VOID(textHost); in SetText()
479 CHECK_NULL_VOID(textHost); in SetFontColor()
490 CHECK_NULL_VOID(textHost); in SetFontSize()
[all …]
H A Dprogress_pattern.cpp203 auto textHost = AceType::DynamicCast<FrameNode>(host->GetChildAtIndex(0)); in OnPress() local
204 CHECK_NULL_VOID(textHost); in OnPress()
205 auto textLayoutProperty = textHost->GetLayoutProperty<TextLayoutProperty>(); in OnPress()
228 textHost->MarkDirtyNode(PROPERTY_UPDATE_MEASURE); in OnPress()
382 auto textHost = AceType::DynamicCast<FrameNode>(frameNode->GetChildAtIndex(0)); in ObscureText() local
383 CHECK_NULL_VOID(textHost); in ObscureText()
384 auto textPattern = textHost->GetPattern<TextPattern>(); in ObscureText()
387 textHost->SetPrivacySensitive(isSensitive); in ObscureText()
388 textHost->MarkDirtyNode(PROPERTY_UPDATE_RENDER); in ObscureText()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/progress/
H A Dprogress_test_ng.cpp1097 auto textHost = AceType::DynamicCast<FrameNode>(frameNode->GetChildAtIndex(0)); variable
1098 ASSERT_NE(textHost, nullptr);
1099 auto textPattern = textHost->GetPattern<TextPattern>();