Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dtext_style.cpp42textIndent_ == rhs.textIndent_ && verticalAlign_ == rhs.verticalAlign_ && wordSpacing_ == rhs.word… in operator ==()
95 JSON_STRING_PUT_STRINGABLE(jsonValue, textIndent_); in ToString()
H A Dtext_style.h422 return textIndent_; in GetTextIndent()
427 textIndent_ = textIndent; in SetTextIndent()
783 Dimension textIndent_ { 0.0f, DimensionUnit::PX };
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_layout_algorithm.cpp82 textIndent_ = textStyle.GetTextIndent(); in ConstructTextStyles()
222 if (LessOrEqual(textIndent_.Value(), 0.0)) { in ApplyIndent()
237 if (textIndent_.Unit() != DimensionUnit::PERCENT) { in ApplyIndent()
241 if (!textIndent_.NormalizeToPx(pipeline->GetDipScale(), in ApplyIndent()
246 indentValue = width * textIndent_.Value(); in ApplyIndent()
H A Dtext_field_layout_algorithm.h161 Dimension textIndent_ = 0.0_px; variable