Lines Matching refs:inputChars
337 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendReplacement() local
338 if (inputChars == NULL) { in appendReplacement()
342 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement()
343 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendReplacement()
344 uprv_free(inputChars); in appendReplacement()
529 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16)); in appendTail() local
530 if (inputChars == NULL) { in appendTail()
533 …utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // untermina… in appendTail()
535 utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendTail()
536 uprv_free(inputChars); in appendTail()
1413 UChar *inputChars = result->getBuffer(len16); in input() local
1414 … utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning in input()
1468 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(input16Len)); in getInput() local
1469 if (inputChars == NULL) { in getInput()
1474 …utext_extract(fInputText, 0, fInputLength, inputChars, input16Len, &status); // not terminated war… in getInput()
1476 utext_replace(dest, 0, utext_nativeLength(dest), inputChars, input16Len, &status); in getInput()
1478 uprv_free(inputChars); in getInput()