Searched refs:tempStart (Results 1 – 3 of 3) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringReplacer.java | 156 int tempStart = text.length(); // start of temp buffer in replace() local 157 int destStart = tempStart; // copy new text to here in replace() 160 text.copy(start-len, start, tempStart); in replace() 163 text.replace(tempStart, tempStart, "\uFFFF"); in replace() 225 text.replace(tempStart + outLen, destLimit + tempExtra + outLen, ""); in replace()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | StringReplacer.java | 155 int tempStart = text.length(); // start of temp buffer in replace() local 156 int destStart = tempStart; // copy new text to here in replace() 159 text.copy(start-len, start, tempStart); in replace() 162 text.replace(tempStart, tempStart, "\uFFFF"); in replace() 224 text.replace(tempStart + outLen, destLimit + tempExtra + outLen, ""); in replace()
|
/external/icu/icu4c/source/i18n/ |
D | strrepl.cpp | 145 int32_t tempStart = text.length(); // start of temp buffer in replace() local 146 int32_t destStart = tempStart; // copy new text to here in replace() 149 text.copy(start-len, start, tempStart); in replace() 153 text.handleReplaceBetween(tempStart, tempStart, str); in replace() 198 text.handleReplaceBetween(tempStart + outLen, destLimit + outLen, UnicodeString()); in replace()
|