Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_util_regex_Matcher.cpp58 mStatus(U_ZERO_ERROR) { in MatcherState()
95 mStatus = U_ZERO_ERROR; in updateInput()
96 mUText = utext_openUChars(nullptr, mUChars.get(), inputChars.size(), &mStatus); in updateInput()
98 CHECK(maybeThrowIcuException(env, "utext_openUChars", mStatus)); in updateInput()
104 CHECK(U_SUCCESS(mStatus)); in updateInput()
121 return mStatus; in status()
131 offsets[2*i + 0] = mMatcher->start(i, mStatus); in updateOffsets()
132 offsets[2*i + 1] = mMatcher->end(i, mStatus); in updateOffsets()
140 UErrorCode mStatus; member in MatcherState