Searched refs:destIdx (Results 1 – 3 of 3) sorted by relevance
/external/icu4c/i18n/ |
D | uregex.cpp | 1379 int32_t destIdx = 0; in appendReplacement() local 1404 appendToBuf(regexp->fText[i], &destIdx, dest, capacity); in appendReplacement() 1408 destIdx += utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart, in appendReplacement() 1409 … &dest[destIdx], REMAINING_CAPACITY(destIdx, capacity), &possibleOverflowError); in appendReplacement() 1421 appendToBuf(c, &destIdx, dest, capacity); in appendReplacement() 1446 appendToBuf((UChar)escapedChar, &destIdx, dest, capacity); in appendReplacement() 1448 appendToBuf(U16_LEAD(escapedChar), &destIdx, dest, capacity); in appendReplacement() 1449 appendToBuf(U16_TRAIL(escapedChar), &destIdx, dest, capacity); in appendReplacement() 1458 appendToBuf(c, &destIdx, dest, capacity); in appendReplacement() 1494 appendToBuf(DOLLARSIGN, &destIdx, dest, capacity); in appendReplacement() [all …]
|
D | digitlst.cpp | 210 int32_t destIdx = MAX_IDX; in formatBase10() local 211 outputStr[--destIdx] = 0; in formatBase10() 215 outputStr[--destIdx] = (char)(-(n % 10) + kZero); in formatBase10() 219 outputStr[--destIdx] = (char)(n % 10 + kZero); in formatBase10() 224 outputStr[--destIdx] = '-'; in formatBase10() 228 U_ASSERT(destIdx >= 0); in formatBase10() 229 int32_t length = MAX_IDX - destIdx; in formatBase10()
|
/external/icu4c/test/intltest/ |
D | transrt.cpp | 1044 int32_t destIdx = 0; in writeStringInU8() local 1045 U8_APPEND(bufForOneChar, destIdx, (int32_t)sizeof(bufForOneChar), c, isError); in writeStringInU8() 1046 fwrite(bufForOneChar, 1, destIdx, out); in writeStringInU8()
|