/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar/ |
H A D | calendar_paint_method.cpp | 78 std::string newText { text }; in DrawCalendarText() 82 newText = StringUtils::ToString(wText); in DrawCalendarText() 83 newText += ELLIPSIS; in DrawCalendarText() 86 auto paragraph = GetTextParagraph(newText, textStyle); in DrawCalendarText() 539 std::string newText { weekNumbers_[(startDayOfWeek + 1) % daysOfWeek] }; in DrawWeek() 540 auto wText = StringUtils::ToWstring(newText); in DrawWeek() 543 newText = StringUtils::ToString(wText); in DrawWeek() 545 DrawCalendarText(&canvas, newText, weekTextStyle, boxRect); in DrawWeek()
|
/third_party/icu/icu4c/source/common/ |
H A D | rbbi.cpp | 483 * @param newText An iterator over the text to analyze. 486 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) { in adoptText() argument 493 fCharIter = newText; in adoptText() 497 if (newText==NULL || newText->startIndex() != 0) { in adoptText() 502 utext_openCharacterIterator(&fText, newText, &status); in adoptText() 510 * @param newText An iterator over the text to analyze. 513 RuleBasedBreakIterator::setText(const UnicodeString& newText) { in setText() argument 517 utext_openConstUnicodeString(&fText, &newText, &status); in setText() 523 fSCharIter.setText(newText); in setText() [all...] |
H A D | uchriter.cpp | 352 void UCharCharacterIterator::setText(ConstChar16Ptr newText, in setText() argument 354 text = newText; in setText() 355 if(newText == 0 || newTextLength < 0) { in setText()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | rbbi.cpp | 469 * @param newText An iterator over the text to analyze. 472 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) { in adoptText() argument 479 fCharIter = newText; in adoptText() 483 if (newText==NULL || newText->startIndex() != 0) { in adoptText() 488 utext_openCharacterIterator(&fText, newText, &status); in adoptText() 496 * @param newText An iterator over the text to analyze. 499 RuleBasedBreakIterator::setText(const UnicodeString& newText) { in setText() argument 503 utext_openConstUnicodeString(&fText, &newText, &status); in setText() 509 fSCharIter.setText(newText); in setText() [all...] |
H A D | uchriter.cpp | 352 void UCharCharacterIterator::setText(ConstChar16Ptr newText, in setText() argument 354 text = newText; in setText() 355 if(newText == 0 || newTextLength < 0) { in setText()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | Normalizer.java | 1811 * @param newText The new string to be normalized. 1815 public void setText(StringBuffer newText) { in setText() argument 1816 UCharacterIterator newIter = UCharacterIterator.getInstance(newText); in setText() 1827 * @param newText The new string to be normalized. 1831 public void setText(char[] newText) { in setText() argument 1832 UCharacterIterator newIter = UCharacterIterator.getInstance(newText); in setText() 1843 * @param newText The new string to be normalized. 1847 public void setText(String newText) { in setText() argument 1848 UCharacterIterator newIter = UCharacterIterator.getInstance(newText); in setText() 1859 * @param newText Th 1863 setText(CharacterIterator newText) setText() argument 1879 setText(UCharacterIterator newText) setText() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | Normalizer.java | 1866 * @param newText The new string to be normalized. 1871 public void setText(StringBuffer newText) { in setText() argument 1872 UCharacterIterator newIter = UCharacterIterator.getInstance(newText); in setText() 1883 * @param newText The new string to be normalized. 1888 public void setText(char[] newText) { in setText() argument 1889 UCharacterIterator newIter = UCharacterIterator.getInstance(newText); in setText() 1900 * @param newText The new string to be normalized. 1905 public void setText(String newText) { in setText() argument 1906 UCharacterIterator newIter = UCharacterIterator.getInstance(newText); in setText() 1917 * @param newText Th 1922 setText(CharacterIterator newText) setText() argument 1939 setText(UCharacterIterator newText) setText() argument [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | rbbi.h | 371 * @param newText An iterator over the text to analyze. The BreakIterator 375 virtual void adoptText(CharacterIterator* newText) override; 385 * @param newText The text to analyze. 388 virtual void setText(const UnicodeString& newText) override;
|
H A D | schriter.h | 140 * @param newText The string to be iterated over 143 void setText(const UnicodeString& newText);
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | rbbi.h | 450 * @param newText An iterator over the text to analyze. The BreakIterator 454 virtual void adoptText(CharacterIterator* newText) override; 464 * @param newText The text to analyze. 467 virtual void setText(const UnicodeString& newText) override;
|
H A D | schriter.h | 140 * @param newText The string to be iterated over 143 void setText(const UnicodeString& newText);
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | rbbi.h | 351 * @param newText An iterator over the text to analyze. The BreakIterator 355 virtual void adoptText(CharacterIterator* newText); 365 * @param newText The text to analyze. 368 virtual void setText(const UnicodeString& newText);
|
H A D | uchriter.h | 350 void setText(ConstChar16Ptr newText, int32_t newTextLength);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uchriter.cpp | 352 void UCharCharacterIterator::setText(ConstChar16Ptr newText, in setText() argument 354 text = newText; in setText() 355 if(newText == 0 || newTextLength < 0) { in setText()
|
/foundation/arkui/ace_engine/frameworks/core/components/calendar/ |
H A D | rosen_render_calendar.cpp | 76 std::string newText { text }; in GetTextParagraph() 80 newText = StringUtils::ToString(wText); in GetTextParagraph() 81 newText += ELLIPSIS; in GetTextParagraph() 84 auto paragraph = GetTextParagraph(newText, textStyle); in GetTextParagraph() 318 std::string newText { weekNumbers_[(startDayOfWeek + 1) % daysOfWeek] }; in DrawWeek() 319 auto wText = StringUtils::ToWstring(newText); in DrawWeek() 322 newText = StringUtils::ToString(wText); in DrawWeek() 324 DrawCalendarText(canvas, newText, weekTextStyle, boxRect); in DrawWeek()
|
/foundation/arkui/ace_engine/frameworks/core/common/ime/ |
H A D | text_editing_value.h | 75 void Append(const std::string& newText);
|
H A D | text_editing_value.cpp | 276 void TextEditingValue::Append(const std::string& newText) in Append() argument 278 text = text + newText; in Append()
|
/foundation/arkui/ace_engine/test/mock/core/common/ |
H A D | mock_text_editing_value.cpp | 79 void TextEditingValue::Append(const std::string& newText) {} in Append() argument
|
/third_party/typescript/tests/baselines/reference/ |
H A D | tsxSpreadAttributesResolution6.js | 5 | { editable: true, onEdit: (newText: string) => void };
|
H A D | tsxSpreadAttributesResolution7.js | 5 | { editable: true, onEdit: (newText: string) => void };
|
/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | render_picker_option.h | 41 void UpdateValue(uint32_t newIndex, const std::string& newText);
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
H A D | AbstractBreakIteratorTests.java | 83 public void setText(CharacterIterator newText) { in setText() argument
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | AbstractBreakIteratorTests.java | 80 public void setText(CharacterIterator newText) { in setText() argument
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | SimpleFilteredSentenceBreakIterator.java | 286 public void setText(CharacterIterator newText) { in setText() argument 287 delegate.setText(newText); in setText()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | SimpleFilteredSentenceBreakIterator.java | 270 public void setText(CharacterIterator newText) { in setText() argument 271 delegate.setText(newText); in setText()
|