Home
last modified time | relevance | path

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

123

/third_party/mesa3d/ohos/
H A DmodifyDtsi.py51 def addItem(self, newText, positionInedx, rowNume):
52 assert rowNume >= 0,"rowNum含义为“要将newText添加到positionSearch所定位的条目下的第几行”,可以等于0及添加到当前行,将当前行往下挤,但不可以为负数,如需要在positionSearch所定位的条目上方添加复数行,请按顺序调用addItem函数,且rowNum都填入0"
54 if("is not set" in newText):
55 item = newText[2:-11]
57 item = newText[:-2]
68 self.lines.insert(lineNum, newText+'\n')
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DBreakIteratorICU.java93 public void setText(CharacterIterator newText) { in setText() argument
94 fIcuBrkItr.setText(newText); in setText()
98 public void setText(String newText) { in setText() argument
99 fIcuBrkItr.setText(newText); in setText()
/third_party/icu/icu4c/source/i18n/
H A Dutf16collationiterator.cpp31 const UChar *newText) in UTF16CollationIterator()
33 start(newText), in UTF16CollationIterator()
34 pos(newText + (other.pos - other.start)), in UTF16CollationIterator()
35 limit(other.limit == NULL ? NULL : newText + (other.limit - other.start)) { in UTF16CollationIterator()
152 const UChar *newText) in FCDUTF16CollationIterator()
154 rawStart(newText), in FCDUTF16CollationIterator()
155 segmentStart(newText + (other.segmentStart - other.rawStart)), in FCDUTF16CollationIterator()
156 segmentLimit(other.segmentLimit == NULL ? NULL : newText + (other.segmentLimit - other.rawStart)), in FCDUTF16CollationIterator()
157 rawLimit(other.rawLimit == NULL ? NULL : newText + (other.rawLimit - other.rawStart)), in FCDUTF16CollationIterator()
162 start = newText in FCDUTF16CollationIterator()
30 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText) UTF16CollationIterator() argument
151 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText) FCDUTF16CollationIterator() argument
[all...]
H A Dutf16collationiterator.h41 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText);
94 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText);
/third_party/node/deps/icu-small/source/i18n/
H A Dutf16collationiterator.cpp31 const char16_t *newText) in UTF16CollationIterator()
33 start(newText), in UTF16CollationIterator()
34 pos(newText + (other.pos - other.start)), in UTF16CollationIterator()
35 limit(other.limit == nullptr ? nullptr : newText + (other.limit - other.start)) { in UTF16CollationIterator()
152 const char16_t *newText) in FCDUTF16CollationIterator()
154 rawStart(newText), in FCDUTF16CollationIterator()
155 segmentStart(newText + (other.segmentStart - other.rawStart)), in FCDUTF16CollationIterator()
156 segmentLimit(other.segmentLimit == nullptr ? nullptr : newText + (other.segmentLimit - other.rawStart)), in FCDUTF16CollationIterator()
157 rawLimit(other.rawLimit == nullptr ? nullptr : newText + (other.rawLimit - other.rawStart)), in FCDUTF16CollationIterator()
162 start = newText in FCDUTF16CollationIterator()
30 UTF16CollationIterator(const UTF16CollationIterator &other, const char16_t *newText) UTF16CollationIterator() argument
151 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const char16_t *newText) FCDUTF16CollationIterator() argument
[all...]
H A Dutf16collationiterator.h41 UTF16CollationIterator(const UTF16CollationIterator &other, const char16_t *newText);
94 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const char16_t *newText);
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dutf16collationiterator.cpp31 const UChar *newText) in UTF16CollationIterator()
33 start(newText), in UTF16CollationIterator()
34 pos(newText + (other.pos - other.start)), in UTF16CollationIterator()
35 limit(other.limit == NULL ? NULL : newText + (other.limit - other.start)) { in UTF16CollationIterator()
152 const UChar *newText) in FCDUTF16CollationIterator()
154 rawStart(newText), in FCDUTF16CollationIterator()
155 segmentStart(newText + (other.segmentStart - other.rawStart)), in FCDUTF16CollationIterator()
156 segmentLimit(other.segmentLimit == NULL ? NULL : newText + (other.segmentLimit - other.rawStart)), in FCDUTF16CollationIterator()
157 rawLimit(other.rawLimit == NULL ? NULL : newText + (other.rawLimit - other.rawStart)), in FCDUTF16CollationIterator()
162 start = newText in FCDUTF16CollationIterator()
30 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText) UTF16CollationIterator() argument
151 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText) FCDUTF16CollationIterator() argument
[all...]
H A Dutf16collationiterator.h41 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText);
94 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBreakIterator.java514 * @param newText A String containing the text to analyze with
518 public void setText(String newText) in setText() argument
520 setText(new StringCharacterIterator(newText)); in setText()
532 * @param newText A CharSequence containing the text to analyze with
536 public void setText(CharSequence newText) { in setText() argument
537 setText(new CSCharacterIterator(newText)); in setText()
550 * @param newText A CharacterIterator referring to the text
555 public abstract void setText(CharacterIterator newText); in setText() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBreakIterator.java488 * @param newText A String containing the text to analyze with
491 public void setText(String newText) in setText() argument
493 setText(new StringCharacterIterator(newText)); in setText()
505 * @param newText A CharSequence containing the text to analyze with
508 public void setText(CharSequence newText) { in setText() argument
509 setText(new CSCharacterIterator(newText)); in setText()
522 * @param newText A CharacterIterator referring to the text
526 public abstract void setText(CharacterIterator newText); in setText() argument
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DDemoUtility.java95 public static void setText(TextComponent area, String newText) { in setText() argument
97 if (foo.equals(newText)) return; in setText()
98 area.setText(newText); in setText()
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dschriter.h140 * @param newText The string to be iterated over
143 void setText(const UnicodeString& newText);
177 * @param newText The string to be iterated over
181 void setText(const char16_t* newText, int32_t newTextLength);
H A Dnormlzr.h683 * @param newText a string that replaces the current input text
687 void setText(const UnicodeString& newText,
694 * @param newText a CharacterIterator object that replaces the current input text
698 void setText(const CharacterIterator& newText,
705 * @param newText a string that replaces the current input text
710 void setText(ConstChar16Ptr newText,
/third_party/icu/icu4c/source/test/cintltst/
H A Dutransts.c105 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1)); in Xreplace() local
106 u_strncpy(newText, x->text, start); in Xreplace()
107 u_strncpy(newText + start, text, textLength); in Xreplace()
108 u_strcpy(newText + start + textLength, x->text + limit); in Xreplace()
110 x->text = newText; in Xreplace()
117 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1)); in Xcopy() local
118 u_strncpy(newText, x->text, dest); in Xcopy()
119 u_strncpy(newText + dest, x->text + start, limit - start); in Xcopy()
120 u_strcpy(newText + dest + limit - start, x->text + dest); in Xcopy()
122 x->text = newText; in Xcopy()
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Dnormlzr.h683 * @param newText a string that replaces the current input text
687 void setText(const UnicodeString& newText,
694 * @param newText a CharacterIterator object that replaces the current input text
698 void setText(const CharacterIterator& newText,
705 * @param newText a string that replaces the current input text
710 void setText(ConstChar16Ptr newText,
/third_party/node/deps/icu-small/source/common/unicode/
H A Dnormlzr.h683 * @param newText a string that replaces the current input text
687 void setText(const UnicodeString& newText,
694 * @param newText a CharacterIterator object that replaces the current input text
698 void setText(const CharacterIterator& newText,
705 * @param newText a string that replaces the current input text
710 void setText(ConstChar16Ptr newText,
/third_party/icu/icu4c/source/common/
H A Dnormlzr.cpp406 Normalizer::setText(const UnicodeString& newText, in setText() argument
412 CharacterIterator *newIter = new StringCharacterIterator(newText); in setText()
427 Normalizer::setText(const CharacterIterator& newText, in setText() argument
433 CharacterIterator *newIter = newText.clone(); in setText()
444 Normalizer::setText(ConstChar16Ptr newText, in setText() argument
451 CharacterIterator *newIter = new UCharCharacterIterator(newText, length); in setText()
H A Dschriter.cpp110 StringCharacterIterator::setText(const UnicodeString& newText) { in setText() argument
111 text = newText; in setText()
H A Drbbi.cpp483 * @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...]
/third_party/node/deps/icu-small/source/common/
H A Dnormlzr.cpp406 Normalizer::setText(const UnicodeString& newText, in setText() argument
412 CharacterIterator *newIter = new StringCharacterIterator(newText); in setText()
427 Normalizer::setText(const CharacterIterator& newText, in setText() argument
433 CharacterIterator *newIter = newText.clone(); in setText()
444 Normalizer::setText(ConstChar16Ptr newText, in setText() argument
451 CharacterIterator *newIter = new UCharCharacterIterator(newText, length); in setText()
H A Drbbi.cpp453 * @param newText An iterator over the text to analyze.
456 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) { in adoptText() argument
463 fCharIter = newText; in adoptText()
467 if (newText==nullptr || newText->startIndex() != 0) { in adoptText()
472 utext_openCharacterIterator(&fText, newText, &status); in adoptText()
480 * @param newText An iterator over the text to analyze.
483 RuleBasedBreakIterator::setText(const UnicodeString& newText) { in setText() argument
487 utext_openConstUnicodeString(&fText, &newText, &status); in setText()
493 fSCharIter.setText(newText in setText()
[all...]
H A Dschriter.cpp110 StringCharacterIterator::setText(const UnicodeString& newText) { in setText() argument
111 text = newText; in setText()
/third_party/skia/third_party/externals/icu/source/common/
H A Dnormlzr.cpp406 Normalizer::setText(const UnicodeString& newText, in setText() argument
412 CharacterIterator *newIter = new StringCharacterIterator(newText); in setText()
427 Normalizer::setText(const CharacterIterator& newText, in setText() argument
433 CharacterIterator *newIter = newText.clone(); in setText()
444 Normalizer::setText(ConstChar16Ptr newText, in setText() argument
451 CharacterIterator *newIter = new UCharCharacterIterator(newText, length); in setText()
H A Dschriter.cpp110 StringCharacterIterator::setText(const UnicodeString& newText) { in setText() argument
111 text = newText; in setText()
H A Drbbi.cpp469 * @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...]

Completed in 20 milliseconds

123