Searched refs:destIdx (Results 1 - 7 of 7) sorted by relevance

/external/icu4c/i18n/
H A Duregex.cpp1379 int32_t destIdx = 0; local
1404 appendToBuf(regexp->fText[i], &destIdx, dest, capacity);
1408 destIdx += utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart,
1409 dest==NULL?NULL:&dest[destIdx], REMAINING_CAPACITY(destIdx, capacity),
1412 U_ASSERT(destIdx >= 0);
1422 appendToBuf(c, &destIdx, dest, capacity);
1447 appendToBuf((UChar)escapedChar, &destIdx, dest, capacity);
1449 appendToBuf(U16_LEAD(escapedChar), &destIdx, dest, capacity); local
1450 appendToBuf(U16_TRAIL(escapedChar), &destIdx, des local
1614 int32_t destIdx = 0; local
1797 int32_t destIdx = 0; // Next available position in destBuf; local
[all...]
H A Ddigitlst.cpp219 int32_t destIdx = MAX_IDX; local
220 outputStr[--destIdx] = 0;
224 outputStr[--destIdx] = (char)(-(n % 10) + kZero);
228 outputStr[--destIdx] = (char)(n % 10 + kZero);
233 outputStr[--destIdx] = '-';
237 U_ASSERT(destIdx >= 0);
238 int32_t length = MAX_IDX - destIdx;
H A Ddecimfmt.cpp1150 int32_t destIdx = MAX_IDX; local
1151 outputStr[--destIdx] = 0; // term
1157 outputStr[--destIdx] = (-(n % 10) + kZero);
1162 outputStr[--destIdx] = (n % 10) + kZero;
1168 U_ASSERT(destIdx >= 0);
1169 int32_t length = MAX_IDX - destIdx -1;
1189 appendTo.append(outputStr+destIdx+
1199 printf("Writing [%s] length [%d] max %d for [%d]\n", outputStr+destIdx, length, MAX_IDX, number);
/external/chromium_org/third_party/icu/source/i18n/
H A Duregex.cpp1361 int32_t destIdx = 0; local
1386 appendToBuf(regexp->fText[i], &destIdx, dest, capacity);
1390 destIdx += utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart,
1391 &dest[destIdx], REMAINING_CAPACITY(destIdx, capacity), &possibleOverflowError);
1403 appendToBuf(c, &destIdx, dest, capacity);
1428 appendToBuf((UChar)escapedChar, &destIdx, dest, capacity);
1430 appendToBuf(U16_LEAD(escapedChar), &destIdx, dest, capacity); local
1431 appendToBuf(U16_TRAIL(escapedChar), &destIdx, dest, capacity); local
1440 appendToBuf(c, &destIdx, des
1594 int32_t destIdx = 0; local
1774 int32_t destIdx = 0; // Next available position in destBuf; local
[all...]
H A Ddigitlst.cpp218 int32_t destIdx = MAX_IDX; local
219 outputStr[--destIdx] = 0;
223 outputStr[--destIdx] = (char)(-(n % 10) + kZero);
227 outputStr[--destIdx] = (char)(n % 10 + kZero);
232 outputStr[--destIdx] = '-';
236 U_ASSERT(destIdx >= 0);
237 int32_t length = MAX_IDX - destIdx;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtransrt.cpp1044 int32_t destIdx = 0; local
1045 U8_APPEND(bufForOneChar, destIdx, (int32_t)sizeof(bufForOneChar), c, isError);
1046 fwrite(bufForOneChar, 1, destIdx, out);
/external/icu4c/test/intltest/
H A Dtransrt.cpp1045 int32_t destIdx = 0; local
1046 U8_APPEND(bufForOneChar, destIdx, (int32_t)sizeof(bufForOneChar), c, isError);
1047 fwrite(bufForOneChar, 1, destIdx, out);

Completed in 2074 milliseconds