Searched refs:inputChars (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | rematch.cpp | 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() [all …]
|
D | uregex.cpp | 456 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(regexp->fTextLength+1)); in uregex_getText() local 458 … utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status); in uregex_getText() 459 regexp->fText = inputChars; in uregex_getText()
|
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 3378 char *patternChars = NULL, *inputChars = NULL; in regex_find() local 3577 inputChars = new char[inputUTF8Length+1]; in regex_find() 3578 deTaggedInput.extract(inputChars, inputUTF8Length+1, UTF8Converter, status); in regex_find() 3579 utext_openUTF8(&inputText, inputChars, inputUTF8Length, &status); in regex_find() 3815 delete[] inputChars; in regex_find() 4409 char *inputChars = NULL; in PerlTestsUTF8() local 4603 … inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8() 4606 delete[] inputChars; in PerlTestsUTF8() 4608 inputChars = new char[inputCapacity]; in PerlTestsUTF8() 4609 matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8() [all …]
|