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

123

/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
H A DReplaceTextCommentScanner.java23 * Replaces all occurrences of {@code oldText} with {@code newText}.
27 private final String newText; field in class:ReplaceTextCommentScanner
29 public ReplaceTextCommentScanner(String oldText, String newText) { argument
31 this.newText = newText;
36 String newCommentText = commentText.replace(oldText, newText);
47 ", newText='" + newText + '\'' +
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DBreakIteratorICU.java91 public void setText(CharacterIterator newText) { argument
92 fIcuBrkItr.setText(newText);
96 public void setText(String newText) { argument
97 fIcuBrkItr.setText(newText);
/external/icu/icu4c/source/common/unicode/
H A Dschriter.h135 * @param newText The string to be iterated over
138 void setText(const UnicodeString& newText);
172 * @param newText The string to be iterated over
176 void setText(const UChar* newText, int32_t newTextLength);
H A Dnormlzr.h678 * @param newText a string that replaces the current input text
682 void setText(const UnicodeString& newText,
689 * @param newText a CharacterIterator object that replaces the current input text
693 void setText(const CharacterIterator& newText,
700 * @param newText a string that replaces the current input text
705 void setText(const UChar* newText,
H A Drbbi.h396 * @param newText An iterator over the text to analyze. The BreakIterator
400 virtual void adoptText(CharacterIterator* newText);
405 * @param newText The text to analyze.
408 virtual void setText(const UnicodeString& newText);
H A Duchriter.h341 void setText(const UChar* newText, int32_t newTextLength);
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DBreakIterator.java389 * @param newText A String containing the text to analyze with
393 public void setText(String newText) argument
395 setText(new StringCharacterIterator(newText));
404 * @param newText A CharacterIterator referring to the text
409 public abstract void setText(CharacterIterator newText); argument
788 public void setText(CharacterIterator newText) { argument
789 breakIterator.setText(newText);
/external/icu/icu4c/source/i18n/
H A Dutf16collationiterator.cpp29 const UChar *newText)
31 start(newText),
32 pos(newText + (other.pos - other.start)),
33 limit(other.limit == NULL ? NULL : newText + (other.limit - other.start)) {
150 const UChar *newText)
152 rawStart(newText),
153 segmentStart(newText + (other.segmentStart - other.rawStart)),
154 segmentLimit(other.segmentLimit == NULL ? NULL : newText + (other.segmentLimit - other.rawStart)),
155 rawLimit(other.rawLimit == NULL ? NULL : newText + (other.rawLimit - other.rawStart)),
160 start = newText
28 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText) argument
149 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText) argument
[all...]
H A Dutf16collationiterator.h39 UTF16CollationIterator(const UTF16CollationIterator &other, const UChar *newText);
92 FCDUTF16CollationIterator(const FCDUTF16CollationIterator &other, const UChar *newText);
/external/icu/icu4c/source/common/
H A Dschriter.cpp108 StringCharacterIterator::setText(const UnicodeString& newText) { argument
109 text = newText;
H A Dnormlzr.cpp398 Normalizer::setText(const UnicodeString& newText, argument
404 CharacterIterator *newIter = new StringCharacterIterator(newText);
419 Normalizer::setText(const CharacterIterator& newText, argument
425 CharacterIterator *newIter = newText.clone();
436 Normalizer::setText(const UChar* newText, argument
443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
H A Duchriter.cpp350 void UCharCharacterIterator::setText(const UChar* newText, argument
352 text = newText;
353 if(newText == 0 || newTextLength < 0) {
H A Drbbi.cpp434 * @param newText An iterator over the text to analyze.
437 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) { argument
444 fCharIter = newText;
447 if (newText==NULL || newText->startIndex() != 0) {
452 fText = utext_openCharacterIterator(fText, newText, &status);
460 * @param newText An iterator over the text to analyze.
463 RuleBasedBreakIterator::setText(const UnicodeString& newText) { argument
466 fText = utext_openConstUnicodeString(fText, &newText, &status);
473 fSCharIter = new StringCharacterIterator(newText);
[all...]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DDemoUtility.java93 public static void setText(TextComponent area, String newText) { argument
95 if (foo.equals(newText)) return;
96 area.setText(newText);
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
H A DLabel.java90 /** @param newText May be null, "" will be used. */
91 public void setText (CharSequence newText) { argument
92 if (newText == null) newText = "";
93 if (newText instanceof StringBuilder) {
94 if (text.equals(newText)) return;
96 text.append((StringBuilder)newText);
98 if (textEquals(newText)) return;
100 text.append(newText);
H A DTextField.java469 String newText = (minIndex > 0 ? text.substring(0, minIndex) : "")
472 changeText(text, newText);
474 text = newText;
584 boolean changeText (String oldText, String newText) { argument
585 if (newText.equals(oldText)) return false;
586 text = newText;
589 text = cancelled ? oldText : newText;
/external/icu/icu4c/source/test/cintltst/
H A Dutransts.c99 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1)); local
100 u_strncpy(newText, x->text, start);
101 u_strncpy(newText + start, text, textLength);
102 u_strcpy(newText + start + textLength, x->text + limit);
104 x->text = newText;
111 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1)); local
112 u_strncpy(newText, x->text, dest);
113 u_strncpy(newText + dest, x->text + start, limit - start);
114 u_strcpy(newText + dest + limit - start, x->text + dest);
116 x->text = newText;
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBreakIterator.java480 * @param newText A String containing the text to analyze with
483 public void setText(String newText) argument
485 setText(new StringCharacterIterator(newText));
494 * @param newText A CharacterIterator referring to the text
498 public abstract void setText(CharacterIterator newText); argument
H A DNormalizer.java1857 * @param newText The new string to be normalized.
1862 public void setText(StringBuffer newText) { argument
1863 UCharacterIterator newIter = UCharacterIterator.getInstance(newText);
1874 * @param newText The new string to be normalized.
1879 public void setText(char[] newText) { argument
1880 UCharacterIterator newIter = UCharacterIterator.getInstance(newText);
1891 * @param newText The new string to be normalized.
1896 public void setText(String newText) { argument
1897 UCharacterIterator newIter = UCharacterIterator.getInstance(newText);
1908 * @param newText Th
1913 setText(CharacterIterator newText) argument
1930 setText(UCharacterIterator newText) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBreakIterator.java506 * @param newText A String containing the text to analyze with
510 public void setText(String newText) argument
512 setText(new StringCharacterIterator(newText));
521 * @param newText A CharacterIterator referring to the text
526 public abstract void setText(CharacterIterator newText); argument
H A DNormalizer.java1803 * @param newText The new string to be normalized.
1807 public void setText(StringBuffer newText) { argument
1808 UCharacterIterator newIter = UCharacterIterator.getInstance(newText);
1819 * @param newText The new string to be normalized.
1823 public void setText(char[] newText) { argument
1824 UCharacterIterator newIter = UCharacterIterator.getInstance(newText);
1835 * @param newText The new string to be normalized.
1839 public void setText(String newText) { argument
1840 UCharacterIterator newIter = UCharacterIterator.getInstance(newText);
1851 * @param newText Th
1855 setText(CharacterIterator newText) argument
1871 setText(UCharacterIterator newText) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java196 public void setText(CharacterIterator newText) { argument
197 delegate.setText(newText);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java194 public void setText(CharacterIterator newText) { argument
195 delegate.setText(newText);
/external/clang/lib/ARCMigrate/
H A DARCMT.cpp604 SmallString<512> newText; local
605 llvm::raw_svector_ostream vecOS(newText);
609 StringRef(newText.data(), newText.size()), newFname));
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/net/
H A DNetAPITest.java232 final String newText = httpResponse.getResultAsString();
235 text = newText;

Completed in 649 milliseconds

123