/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/adapter/common/ |
H A D | typography_style.cpp | 58 if (textAlign_ == TextAlign::START) { in GetTextStyle() 60 } else if (textAlign_ == TextAlign::END) { in GetTextStyle() 70 return textAlign_; in GetTextStyle()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | text_style.cpp | 36 …textOverflow_ == rhs.textOverflow_ && textAlign_ == rhs.textAlign_ && textColor_ == rhs.textColor_… in operator ==() 104 JSON_STRING_PUT_INT(jsonValue, textAlign_); in ToString()
|
H A D | paint_state.h | 213 return textAlign_; in GetTextAlign() 218 textAlign_ = textAlign; in SetTextAlign() 314 TextAlign textAlign_ = TextAlign::LEFT; variable
|
H A D | text_style.h | 583 return textAlign_; in GetTextAlign() 587 textAlign_ = textAlign; in SetTextAlign() 791 TextAlign textAlign_ { TextAlign::START };
|
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/rosen/ |
H A D | testing_typography_style.h | 36 TextAlign textAlign_ = TextAlign::START; variable
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_content_modifier.cpp | 181 textAlign_ = AceType::MakeRefPtr<PropertyInt>(static_cast<int32_t>(TextAlign::START)); in SetDefaultPropertyValue() 195 AttachProperty(textAlign_); in SetDefaultPropertyValue() 433 if (textAlign_->Get() != static_cast<int32_t>(value)) { in SetTextAlign() 434 textAlign_->Set(static_cast<int32_t>(value)); in SetTextAlign()
|
H A D | text_field_content_modifier.h | 117 RefPtr<PropertyInt> textAlign_; variable
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/text/renderservice/ |
H A D | main.cpp | 76 typoStype.textAlign_ = TextAlign::START; in DoDraw()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | overlay_modifier.h | 99 paraStyle.textAlign_ = ToRSTextAlign(textStyle.GetTextAlign()); in GetParagraph()
|
H A D | txt_paragraph.h | 188 TextAlign textAlign_ = TextAlign::START; variable
|
H A D | txt_paragraph.cpp | 106 textAlign_ = style.GetTextAlign(); in PushStyle() 190 placeholderCnt_, static_cast<int>(textAlign_), destructCount); in ~TxtParagraph() 583 switch (textAlign_) { in MakeEmptyOffsetX()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text_overlay/ |
H A D | text_overlay_manager.h | 177 TextAlign textAlign_ = TextAlign::START; variable
|
H A D | text_overlay_manager.cpp | 52 switch (textAlign_) { in MakeEmptyOffset()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text_field/ |
H A D | render_text_field.h | 300 return textAlign_; in GetTextAlign() 565 TextAlign textAlign_ = TextAlign::START; variable
|
H A D | rosen_render_text_field.cpp | 1163 style->text_align = ConvertTxtTextAlign(textAlign_); 1166 style->textAlign = ConvertTxtTextAlign(textAlign_); 1478 switch (textAlign_) {
|
H A D | render_text_field.cpp | 254 textAlign_ = textField->GetTextAlign(); in Update()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/test/unittest/text_field/ |
H A D | render_text_field_test.cpp | 86 return textAlign_; in GetTextAlign()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/ndk/ |
H A D | drawing_text_typography_test.cpp | 119 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::LEFT); 125 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::RIGHT); 131 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::CENTER); 137 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::JUSTIFY); 143 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::START); 149 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::END); 155 EXPECT_EQ(ConvertToOriginalText(typoStyle)->textAlign_, TextAlign::LEFT);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/ |
H A D | drawing_text_typography.cpp | 163 ConvertToOriginalText<TypographyStyle>(style)->textAlign_ = textAlign; in OH_Drawing_SetTypographyTextAlign()
|