Searched refs:destIndex (Results 1 – 3 of 3) sorted by relevance
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
D | CharEscaper.java | 126 int destIndex = 0; 144 int sizeNeeded = destIndex + charsSkipped + rlen; 147 dest = growBuffer(dest, destIndex, destSize); 152 s.getChars(lastEscape, index, dest, destIndex); 153 destIndex += charsSkipped; 158 System.arraycopy(r, 0, dest, destIndex, rlen); 159 destIndex += rlen; 167 int sizeNeeded = destIndex + charsLeft; 171 dest = growBuffer(dest, destIndex, sizeNeeded); 173 s.getChars(lastEscape, slen, dest, destIndex); [all …]
|
D | UnicodeEscaper.java | 173 int destIndex = 0; in escapeSlow() local 192 int sizeNeeded = destIndex + charsSkipped + escaped.length; in escapeSlow() 195 dest = growBuffer(dest, destIndex, destLength); in escapeSlow() 199 s.getChars(unescapedChunkStart, index, dest, destIndex); in escapeSlow() 200 destIndex += charsSkipped; in escapeSlow() 203 System.arraycopy(escaped, 0, dest, destIndex, escaped.length); in escapeSlow() 204 destIndex += escaped.length; in escapeSlow() 216 int endIndex = destIndex + charsSkipped; in escapeSlow() 218 dest = growBuffer(dest, destIndex, endIndex); in escapeSlow() 220 s.getChars(unescapedChunkStart, end, dest, destIndex); in escapeSlow() [all …]
|
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
D | StringUtils.java | 281 int destIndex = 0; in copyCodePointsAndReturnCodePointCount() local 287 destination[destIndex] = downCase ? Character.toLowerCase(codePoint) : codePoint; in copyCodePointsAndReturnCodePointCount() 288 destIndex++; in copyCodePointsAndReturnCodePointCount() 290 return destIndex; in copyCodePointsAndReturnCodePointCount()
|