Searched defs:inputChars (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Drematch.cpp325 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); local
326 if (inputChars == NULL) {
330 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
331 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
332 uprv_free(inputChars);
525 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16)); local
526 if (inputChars == NULL) {
529 utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
531 utext_replace(dest, destLen, destLen, inputChars, len16, &status);
532 uprv_free(inputChars);
1355 UChar *inputChars = result->getBuffer(len16); local
1400 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(input16Len)); local
[all...]
H A Duregex.cpp454 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(regexp->fTextLength+1)); local
456 utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status);
457 regexp->fText = inputChars;
/external/icu/icu4c/source/test/intltest/
H A Dregextst.cpp3376 char *patternChars = NULL, *inputChars = NULL; local
3575 inputChars = new char[inputUTF8Length+1];
3576 deTaggedInput.extract(inputChars, inputUTF8Length+1, UTF8Converter, status);
3577 utext_openUTF8(&inputText, inputChars, inputUTF8Length, &status);
3806 delete[] inputChars;
4400 char *inputChars = NULL; local
4594 inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status);
4597 delete[] inputChars;
4599 inputChars = new char[inputCapacity];
4600 matchString.extract(inputChars, inputCapacit
[all...]

Completed in 134 milliseconds