Home
last modified time | relevance | path

Searched refs:oOutput (Results 1 – 3 of 3) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringReplacer.java144 int oOutput; // offset into 'output' in replace() local
169 for (oOutput=0; oOutput<output.length(); ) { in replace()
170 if (oOutput == cursorPos) { in replace()
179 int c = UTF16.charAt(output, oOutput); in replace()
185 int nextIndex = oOutput + UTF16.getCharCount(c); in replace()
209 oOutput = nextIndex; in replace()
216 if (oOutput == cursorPos) { in replace()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DStringReplacer.java143 int oOutput; // offset into 'output' in replace() local
168 for (oOutput=0; oOutput<output.length(); ) { in replace()
169 if (oOutput == cursorPos) { in replace()
178 int c = UTF16.charAt(output, oOutput); in replace()
184 int nextIndex = oOutput + UTF16.getCharCount(c); in replace()
208 oOutput = nextIndex; in replace()
215 if (oOutput == cursorPos) { in replace()
/external/icu/icu4c/source/i18n/
Dstrrepl.cpp133 int32_t oOutput; // offset into 'output' in replace() local
158 for (oOutput=0; oOutput<output.length(); ) { in replace()
159 if (oOutput == cursorPos) { in replace()
163 UChar32 c = output.char32At(oOutput); in replace()
182 oOutput += U16_LENGTH(c); in replace()
189 if (oOutput == cursorPos) { in replace()