Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_util_regex_Matcher.cpp56 mUChars(nullptr), in MatcherState()
69 mUChars.reset(nullptr); in updateInput()
85 mUChars.reset(new (std::nothrow) UChar[inputChars.size()]); in updateInput()
86 if (mUChars.get() == nullptr) { in updateInput()
92 memcpy(mUChars.get(), inputChars.get(), inputChars.size() * sizeof(jchar)); in updateInput()
96 mUText = utext_openUChars(nullptr, mUChars.get(), inputChars.size(), &mStatus); in updateInput()
138 std::unique_ptr<UChar[]> mUChars; member in MatcherState