HomeSort by relevance Sort by last modified time
    Searched refs:inputChars (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 78 ScopedStringChars inputChars(env, input);
79 if (inputChars.get() == nullptr) {
86 mUChars.reset(new (std::nothrow) UChar[inputChars.size()]);
93 memcpy(mUChars.get(), inputChars.get(), inputChars.size() * sizeof(jchar));
97 mUText = utext_openUChars(nullptr, mUChars.get(), inputChars.size(), &mStatus);
  /external/icu/icu4c/source/i18n/
rematch.cpp 329 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
330 if (inputChars == NULL) {
334 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
335 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
336 uprv_free(inputChars);
529 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
530 if (inputChars == NULL) {
533 utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
535 utext_replace(dest, destLen, destLen, inputChars, len16, &status);
536 uprv_free(inputChars);
    [all...]
uregex.cpp 456 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(regexp->fTextLength+1));
458 utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status);
459 regexp->fText = inputChars;
    [all...]
  /external/icu/icu4c/source/test/intltest/
regextst.cpp     [all...]

Completed in 599 milliseconds