/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/ |
H A D | text_input_area_model_test.cpp | 239 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE2); in HWTEST_F() 262 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE3); in HWTEST_F() 285 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE4); in HWTEST_F() 308 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE5); in HWTEST_F() 331 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE6); in HWTEST_F() 354 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE); in HWTEST_F() 377 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE2); in HWTEST_F() 400 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE3); in HWTEST_F() 423 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE4); in HWTEST_F() 446 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE in HWTEST_F() [all...] |
H A D | text_input_test.cpp | 1350 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE); in HWTEST_F()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/ |
H A D | rich_editor_accessibility_test_ng.cpp | 255 EXPECT_EQ(textLineStyle->GetTextIndent(), TEST_TEXT_INDENT);
in HWTEST_F() 323 EXPECT_EQ(textLineStyle->GetTextIndent(), TEST_TEXT_INDENT);
in HWTEST_F() 440 EXPECT_EQ(textLineStyle->GetTextIndent(), TEST_TEXT_INDENT);
in HWTEST_F()
|
H A D | rich_editor_styled_string_test_ng.cpp | 246 EXPECT_EQ(textLineStyle->GetTextIndent(), TEST_TEXT_INDENT); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/text/ |
H A D | rosen_render_text.cpp | 438 if (textStyle_.GetTextIndent().Unit() != DimensionUnit::PERCENT) { in ApplyIndents() 439 indent = NormalizeToPx(textStyle_.GetTextIndent()); in ApplyIndents() 441 indent = width * textStyle_.GetTextIndent().Value(); in ApplyIndents()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/style_string/ |
H A D | js_span_object.h | 86 void GetTextIndent(const JSCallbackInfo& info);
|
H A D | js_span_object.cpp | 1195 "textIndent", &JSParagraphStyleSpan::GetTextIndent, &JSParagraphStyleSpan::SetTextIndent); in JSBind() 1425 void JSParagraphStyleSpan::GetTextIndent(const JSCallbackInfo& info) in GetTextIndent() function in OHOS::Ace::Framework::JSParagraphStyleSpan
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/ |
H A D | text_model_ng.h | 152 static Dimension GetTextIndent(FrameNode* frameNode);
|
H A D | text_model_ng.cpp | 746 Dimension TextModelNG::GetTextIndent(FrameNode* frameNode) in GetTextIndent() function in OHOS::Ace::NG::TextModelNG 754 return textLineStyle->GetTextIndent().value_or(defaultTextIndent); in GetTextIndent()
|
H A D | multiple_paragraph_layout_algorithm.cpp | 389 .indent = textStyle.GetTextIndent() in GetParagraphStyle()
|
H A D | span_node.cpp | 228 dumpLog.AddDesc(std::string("TextIndent: ").append(textStyle->GetTextIndent().ToString())); in DumpInfo() 1061 json->Put("TextIndent", textStyle->GetTextIndent().ToString().c_str()); in DumpInfo()
|
H A D | text_pattern.cpp | 3318 dumpLog.AddDesc(std::string("TextIndent: ").append(textStyle_->GetTextIndent().ToString())); in DumpTextStyleInfo() 4416 json->Put("TextIndent", textStyle_->GetTextIndent().ToString().c_str()); in SetTextStyleDumpInfo()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_layout_property.h | 134 json->PutExtAttr("textIndent", GetTextIndent().value_or(0.0_vp).ToString().c_str(), filter);
|
H A D | text_field_layout_algorithm.cpp | 77 textIndent_ = textStyle.GetTextIndent(); in ConstructTextStyles() 642 textStyle.SetTextIndent(layoutProperty->GetTextIndent().value()); in UpdateTextStyle()
|
H A D | text_field_pattern.h | 881 std::string GetTextIndent() const;
|
H A D | text_field_pattern.cpp | 5955 std::string TextFieldPattern::GetTextIndent() const in OnBackPressed() function in OHOS::Ace::NG::TextFieldPattern 5959 return layoutProperty->GetTextIndent()->ToString(); in OnBackPressed() 6967 dumpLog.AddDesc(std::string("TextIndent:").append(GetTextIndent())); in OnBackPressed()
|
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | text_style.h | 420 Dimension GetTextIndent() const in GetTextIndent() function in OHOS::Ace::final
|
/foundation/arkui/ace_engine/adapter/ohos/capability/html/ |
H A D | span_to_html.cpp | 526 details += ToHtml("text-indent", textLineStyle.GetTextIndent()); in ParagraphStyleToHtml()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/search/ |
H A D | search_testtwo_ng.cpp | 78 EXPECT_EQ(layoutProperty->GetTextIndent(), DEFAULT_INDENT_SIZE); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_text_modifier.cpp | 616 return TextModelNG::GetTextIndent(frameNode).ConvertToVp(); in GetTextTextIndent()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/span/ |
H A D | span_string.cpp | 1133 paragraphStyle.textIndent = spanItem->textLineStyle->GetTextIndent(); in ToParagraphStyleSpan()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/ |
H A D | search_pattern.cpp | 1359 "textIndent", textFieldLayoutProperty->GetTextIndent().value_or(0.0_vp).ToString().c_str(), filter); in ToJsonValueForTextField()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/text/ |
H A D | span_string_test_ng.cpp | 1278 EXPECT_EQ((*it)->textLineStyle->GetTextIndent().value(), Dimension(23)); in HWTEST_F()
|
H A D | text_testthree_ng.cpp | 1919 EXPECT_EQ(layoutProperty->GetTextIndent().value(), TEXT_INDENT); in HWTEST_F()
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | style_modifier.cpp | 11011 const ArkUI_AttributeItem* GetTextIndent(ArkUI_NodeHandle node) in GetTextIndent() function 13011 GetTextHeightAdaptivePolicy, GetTextIndent, GetTextWordBreak, GetTextEllipsisMode, GetLineSpacing, in GetTextAttribute()
|