Searched refs:tempStart (Results 1 – 3 of 3) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringReplacer.java | 153 int tempStart = text.length(); // start of temp buffer in replace() local 154 int destStart = tempStart; // copy new text to here in replace() 157 text.copy(start-len, start, tempStart); in replace() 160 text.replace(tempStart, tempStart, "\uFFFF"); in replace() 222 text.replace(tempStart + outLen, destLimit + tempExtra + outLen, ""); in replace()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | StringReplacer.java | 152 int tempStart = text.length(); // start of temp buffer in replace() local 153 int destStart = tempStart; // copy new text to here in replace() 156 text.copy(start-len, start, tempStart); in replace() 159 text.replace(tempStart, tempStart, "\uFFFF"); in replace() 221 text.replace(tempStart + outLen, destLimit + tempExtra + outLen, ""); in replace()
|
/external/icu/icu4c/source/i18n/ |
D | strrepl.cpp | 143 int32_t tempStart = text.length(); // start of temp buffer in replace() local 144 int32_t destStart = tempStart; // copy new text to here in replace() 147 text.copy(start-len, start, tempStart); in replace() 151 text.handleReplaceBetween(tempStart, tempStart, str); in replace() 196 text.handleReplaceBetween(tempStart + outLen, destLimit + outLen, UnicodeString()); in replace()
|