Home
last modified time | relevance | path

Searched refs:GetTextIndent (Results 1 - 25 of 25) sorted by relevance

/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/
H A Dtext_input_area_model_test.cpp239 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 Dtext_input_test.cpp1350 EXPECT_EQ(layoutProperty_->GetTextIndent(), DEFAULT_INDENT_SIZE); in HWTEST_F()
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_accessibility_test_ng.cpp255 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 Drich_editor_styled_string_test_ng.cpp246 EXPECT_EQ(textLineStyle->GetTextIndent(), TEST_TEXT_INDENT); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components/text/
H A Drosen_render_text.cpp438 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 Djs_span_object.h86 void GetTextIndent(const JSCallbackInfo& info);
H A Djs_span_object.cpp1195 "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 Dtext_model_ng.h152 static Dimension GetTextIndent(FrameNode* frameNode);
H A Dtext_model_ng.cpp746 Dimension TextModelNG::GetTextIndent(FrameNode* frameNode) in GetTextIndent() function in OHOS::Ace::NG::TextModelNG
754 return textLineStyle->GetTextIndent().value_or(defaultTextIndent); in GetTextIndent()
H A Dmultiple_paragraph_layout_algorithm.cpp389 .indent = textStyle.GetTextIndent() in GetParagraphStyle()
H A Dspan_node.cpp228 dumpLog.AddDesc(std::string("TextIndent: ").append(textStyle->GetTextIndent().ToString())); in DumpInfo()
1061 json->Put("TextIndent", textStyle->GetTextIndent().ToString().c_str()); in DumpInfo()
H A Dtext_pattern.cpp3318 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 Dtext_field_layout_property.h134 json->PutExtAttr("textIndent", GetTextIndent().value_or(0.0_vp).ToString().c_str(), filter);
H A Dtext_field_layout_algorithm.cpp77 textIndent_ = textStyle.GetTextIndent(); in ConstructTextStyles()
642 textStyle.SetTextIndent(layoutProperty->GetTextIndent().value()); in UpdateTextStyle()
H A Dtext_field_pattern.h881 std::string GetTextIndent() const;
H A Dtext_field_pattern.cpp5955 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 Dtext_style.h420 Dimension GetTextIndent() const in GetTextIndent() function in OHOS::Ace::final
/foundation/arkui/ace_engine/adapter/ohos/capability/html/
H A Dspan_to_html.cpp526 details += ToHtml("text-indent", textLineStyle.GetTextIndent()); in ParagraphStyleToHtml()
/foundation/arkui/ace_engine/test/unittest/core/pattern/search/
H A Dsearch_testtwo_ng.cpp78 EXPECT_EQ(layoutProperty->GetTextIndent(), DEFAULT_INDENT_SIZE); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_text_modifier.cpp616 return TextModelNG::GetTextIndent(frameNode).ConvertToVp(); in GetTextTextIndent()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/span/
H A Dspan_string.cpp1133 paragraphStyle.textIndent = spanItem->textLineStyle->GetTextIndent(); in ToParagraphStyleSpan()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/
H A Dsearch_pattern.cpp1359 "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 Dspan_string_test_ng.cpp1278 EXPECT_EQ((*it)->textLineStyle->GetTextIndent().value(), Dimension(23)); in HWTEST_F()
H A Dtext_testthree_ng.cpp1919 EXPECT_EQ(layoutProperty->GetTextIndent().value(), TEXT_INDENT); in HWTEST_F()
/foundation/arkui/ace_engine/interfaces/native/node/
H A Dstyle_modifier.cpp11011 const ArkUI_AttributeItem* GetTextIndent(ArkUI_NodeHandle node) in GetTextIndent() function
13011 GetTextHeightAdaptivePolicy, GetTextIndent, GetTextWordBreak, GetTextEllipsisMode, GetLineSpacing, in GetTextAttribute()

Completed in 87 milliseconds