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

/external/chromium_org/third_party/icu/source/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.cpp1335 int32_t destIdx = MAX_IDX; local
1336 outputStr[--destIdx] = 0; // term
1342 outputStr[--destIdx] = (-(n % 10) + kZero);
1347 outputStr[--destIdx] = (n % 10) + kZero;
1353 U_ASSERT(destIdx >= 0);
1354 int32_t length = MAX_IDX - destIdx -1;
1374 appendTo.append(outputStr+destIdx+
1384 printf("Writing [%s] length [%d] max %d for [%d]\n", outputStr+destIdx, length, MAX_IDX, number);
/external/icu/icu4c/source/i18n/
H A Duregex.cpp1382 int32_t destIdx = 0; local
1407 appendToBuf(regexp->fText[i], &destIdx, dest, capacity);
1411 destIdx += utext_extract(m->fInputText, m->fLastMatchEnd, m->fMatchStart,
1412 dest==NULL?NULL:&dest[destIdx], REMAINING_CAPACITY(destIdx, capacity),
1415 U_ASSERT(destIdx >= 0);
1425 appendToBuf(c, &destIdx, dest, capacity);
1450 appendToBuf((UChar)escapedChar, &destIdx, dest, capacity);
1452 appendToBuf(U16_LEAD(escapedChar), &destIdx, dest, capacity); local
1453 appendToBuf(U16_TRAIL(escapedChar), &destIdx, des local
1617 int32_t destIdx = 0; local
1800 int32_t destIdx = 0; // Next available position in destBuf; local
[all...]
H A Ddigitlst.cpp215 int32_t destIdx = MAX_IDX; local
216 outputStr[--destIdx] = 0;
220 outputStr[--destIdx] = (char)(-(n % 10) + kZero);
224 outputStr[--destIdx] = (char)(n % 10 + kZero);
229 outputStr[--destIdx] = '-';
233 U_ASSERT(destIdx >= 0);
234 int32_t length = MAX_IDX - destIdx;
H A Ddecimfmt.cpp1417 int32_t destIdx = MAX_IDX;
1418 outputStr[--destIdx] = 0; // term
1424 outputStr[--destIdx] = (-(n % 10) + kZero);
1429 outputStr[--destIdx] = (n % 10) + kZero;
1435 U_ASSERT(destIdx >= 0);
1436 int32_t length = MAX_IDX - destIdx -1;
1456 appendTo.append(outputStr+destIdx+
1466 printf("Writing [%s] length [%d] max %d for [%d]\n", outputStr+destIdx, length, MAX_IDX, number);
/external/chromium_org/third_party/icu/source/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);
/external/icu/icu4c/source/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 6028 milliseconds