Home
last modified time | relevance | path

Searched refs:inputChars (Results 1 – 4 of 4) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DCLDRFileTransformer.java55 private final UnicodeSet inputChars; field in CLDRFileTransformer.LocaleTransform
69 this.inputChars = new UnicodeSet(inputCharPattern); in LocaleTransform()
106 return inputChars; in getInputChars()
/external/icu/icu4c/source/i18n/
Drematch.cpp329 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 …]
Duregex.cpp456 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/
Dregextst.cpp3317 char *patternChars = NULL, *inputChars = NULL; in regex_find() local
3516 inputChars = new char[inputUTF8Length+1]; in regex_find()
3517 deTaggedInput.extract(inputChars, inputUTF8Length+1, UTF8Converter, status); in regex_find()
3518 utext_openUTF8(&inputText, inputChars, inputUTF8Length, &status); in regex_find()
3754 delete[] inputChars; in regex_find()
4348 char *inputChars = NULL; in PerlTestsUTF8() local
4542 … inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8()
4545 delete[] inputChars; in PerlTestsUTF8()
4547 inputChars = new char[inputCapacity]; in PerlTestsUTF8()
4548 matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8()
[all …]