Home | History | Annotate | Download | only in i18n

Lines Matching refs:inputChars

321             UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
322 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
323 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
324 uprv_free(inputChars);
492 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
493 utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
496 utext_replace(dest, destLen, destLen, inputChars, len16, &status);
498 uprv_free(inputChars);
1311 UChar *inputChars = result->getBuffer(len16);
1312 utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning
1349 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(input16Len));
1352 utext_extract(fInputText, 0, fInputLength, inputChars, input16Len, &status); // not terminated warning
1354 utext_replace(dest, 0, utext_nativeLength(dest), inputChars, input16Len, &status);
1356 uprv_free(inputChars);