Home
last modified time | relevance | path

Searched refs:textLayoutConstraint (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/marquee/
H A Dmarquee_layout_algorithm.cpp43 LayoutConstraintF textLayoutConstraint; in Measure() local
44 textLayoutConstraint.UpdateMaxSizeWithCheck(SizeF(Infinity<float>(), maxSize.Height())); in Measure()
47textLayoutConstraint.selfIdealSize.SetHeight(layoutConstraint->selfIdealSize.Height().value()); in Measure()
56 child->Measure(textLayoutConstraint); in Measure()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/select/
H A Dselect_layout_algorithm.cpp63 auto textLayoutConstraint = textLayoutProperty->CreateContentConstraint(); in Measure() local
76textLayoutConstraint.selfIdealSize = OptionalSize<float>(textSize.Width(), textSize.Height()); in Measure()
77 textLayoutConstraint.maxSize.SetSizeT(textSize); in Measure()
78 textWrapper->Measure(textLayoutConstraint); in Measure()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stepper/
H A Dstepper_layout_algorithm.cpp216 LayoutConstraintF textLayoutConstraint = buttonLayoutConstraint; in MeasureText() local
221 textLayoutConstraint.minSize = { 0, 0 }; in MeasureText()
222 textLayoutConstraint.maxSize.SetWidth(textMaxWidth); in MeasureText()
223 textLayoutConstraint.selfIdealSize = OptionalSizeF(std::nullopt, std::nullopt); in MeasureText()
224 textWrapper->Measure(textLayoutConstraint); in MeasureText()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/badge/
H A Dbadge_layout_algorithm.cpp154 auto textLayoutConstraint = textFirstLayoutConstraint; in Measure() local
155 textLayoutConstraint.selfIdealSize = OptionalSize<float>(badgeWidth, badgeHeight); in Measure()
157 textWrapper->Measure(textLayoutConstraint); in Measure()