Lines Matching refs:inputChars
329 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendReplacement() local
330 if (inputChars == NULL) { in appendReplacement()
334 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement()
335 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendReplacement()
336 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()
1359 UChar *inputChars = result->getBuffer(len16); in input() local
1360 … utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning in input()
1404 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(input16Len)); in getInput() local
1405 if (inputChars == NULL) { in getInput()
1410 …utext_extract(fInputText, 0, fInputLength, inputChars, input16Len, &status); // not terminated war… in getInput()
1412 utext_replace(dest, 0, utext_nativeLength(dest), inputChars, input16Len, &status); in getInput()
1414 uprv_free(inputChars); in getInput()