Lines Matching refs:inputChars
331 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendReplacement() local
332 if (inputChars == NULL) { 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()
338 uprv_free(inputChars); in appendReplacement()
523 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16)); in appendTail() local
524 if (inputChars == NULL) { in appendTail()
527 …utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // untermina… in appendTail()
529 utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendTail()
530 uprv_free(inputChars); in appendTail()
1407 UChar *inputChars = result->getBuffer(len16); in input() local
1408 … utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning in input()
1462 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(input16Len)); in getInput() local
1463 if (inputChars == NULL) { in getInput()
1468 …utext_extract(fInputText, 0, fInputLength, inputChars, input16Len, &status); // not terminated war… in getInput()
1470 utext_replace(dest, 0, utext_nativeLength(dest), inputChars, input16Len, &status); in getInput()
1472 uprv_free(inputChars); in getInput()