Lines Matching refs:UBool
58 static inline UBool isLineTerminator(UChar32 c) {
599 UBool RegexMatcher::findProgressInterrupt(int64_t pos, UErrorCode &status) {
612 UBool RegexMatcher::find() {
617 UBool result = find(status);
626 UBool RegexMatcher::find(UErrorCode &status) {
889 UBool RegexMatcher::find(int64_t start, UErrorCode &status) {
920 UBool RegexMatcher::findUsingChunk(UErrorCode &status) {
1316 UBool RegexMatcher::hasAnchoringBounds() const {
1326 UBool RegexMatcher::hasTransparentBounds() const {
1337 UBool RegexMatcher::hitEnd() const {
1423 static UBool compat_SyncMutableUTextContents(UText *ut);
1424 static UBool compat_SyncMutableUTextContents(UText *ut) {
1425 UBool retVal = FALSE;
1454 UBool RegexMatcher::lookingAt(UErrorCode &status) {
1481 UBool RegexMatcher::lookingAt(int64_t start, UErrorCode &status) {
1525 UBool RegexMatcher::matches(UErrorCode &status) {
1553 UBool RegexMatcher::matches(int64_t start, UErrorCode &status) {
1802 UBool RegexMatcher::requireEnd() const {
1957 void RegexMatcher::setTrace(UBool state) {
2316 RegexMatcher &RegexMatcher::useAnchoringBounds(UBool b) {
2329 RegexMatcher &RegexMatcher::useTransparentBounds(UBool b) {
2532 UBool RegexMatcher::isWordBoundary(int64_t pos) {
2533 UBool isBoundary = FALSE;
2534 UBool cIsWord = FALSE;
2552 UBool prevCIsWord = FALSE;
2568 UBool RegexMatcher::isChunkWordBoundary(int32_t pos) {
2569 UBool isBoundary = FALSE;
2570 UBool cIsWord = FALSE;
2590 UBool prevCIsWord = FALSE;
2616 UBool RegexMatcher::isUWordBoundary(int64_t pos) {
2617 UBool returnVal = FALSE;
2751 void RegexMatcher::MatchAt(int64_t startIdx, UBool toEnd, UErrorCode &status) {
2752 UBool isMatch = FALSE; // True if the we have a match.
2862 UBool success = TRUE;
3076 UBool success = isWordBoundary(fp->fInputIdx);
3077 success ^= (UBool)(opValue != 0); // flip sense for \B
3087 UBool success = isUWordBoundary(fp->fInputIdx);
3088 success ^= (UBool)(opValue != 0); // flip sense for \B
3108 UBool success = (ctype == U_DECIMAL_DIGIT_NUMBER);
3109 success ^= (UBool)(opValue != 0); // flip sense for \D
3136 UBool success = (ctype == U_SPACE_SEPARATOR || c == 9); // SPACE_SEPARATOR || TAB
3137 success ^= (UBool)(opValue != 0); // flip sense for \H
3177 UBool success = isLineTerminator(c);
3178 success ^= (UBool)(opValue != 0); // flip sense for \V
3308 UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
3701 UBool success = TRUE;
3750 UBool success = TRUE;
3888 UBool success = TRUE;
4327 void RegexMatcher::MatchChunkAt(int32_t startIdx, UBool toEnd, UErrorCode &status) {
4328 UBool isMatch = FALSE; // True if the we have a match.
4439 UBool success = TRUE;
4650 UBool success = isChunkWordBoundary((int32_t)fp->fInputIdx);
4651 success ^= (UBool)(opValue != 0); // flip sense for \B
4661 UBool success = isUWordBoundary(fp->fInputIdx);
4662 success ^= (UBool)(opValue != 0); // flip sense for \B
4681 UBool success = (ctype == U_DECIMAL_DIGIT_NUMBER);
4682 success ^= (UBool)(opValue != 0); // flip sense for \D
4707 UBool success = (ctype == U_SPACE_SEPARATOR || c == 9); // SPACE_SEPARATOR || TAB
4708 success ^= (UBool)(opValue != 0); // flip sense for \H
4750 UBool success = isLineTerminator(c);
4751 success ^= (UBool)(opValue != 0); // flip sense for \V
4869 UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
5238 UBool success = TRUE;
5282 UBool success = TRUE;
5410 UBool success = TRUE;