• Home
  • Raw
  • Download

Lines Matching refs:len16

324             int32_t len16;  in appendReplacement()  local
326 len16 = (int32_t)(fMatchStart-fAppendPosition); in appendReplacement()
329len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus); in appendReplacement()
331 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendReplacement()
336 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement()
337 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendReplacement()
523 int32_t len16; in appendTail() local
525 len16 = (int32_t)(fInputLength-fAppendPosition); in appendTail()
527 len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status); in appendTail()
531 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16)); in appendTail()
535 …utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // untermina… in appendTail()
537 utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendTail()
1290 int32_t len16; in appendGroup() local
1292 len16 = (int32_t)(e-s); in appendGroup()
1295 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus); in appendGroup()
1297 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendGroup()
1302 utext_extract(fInputText, s, e, groupChars, len16+1, &status); in appendGroup()
1304 deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status); in appendGroup()
1360 int32_t len16; in input() local
1362 len16 = (int32_t)fInputLength; in input()
1364 len16 = utext_extract(fInputText, 0, fInputLength, NULL, 0, &status); in input()
1367 UnicodeString *result = new UnicodeString(len16, 0, 0); in input()
1369 UChar *inputChars = result->getBuffer(len16); in input()
1370 … utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning in input()
1371 result->releaseBuffer(len16); in input()