Lines Matching refs:UBool
122 UBool operator==(const RegexPattern& that) const;
132 inline UBool operator!=(const RegexPattern& that) const {return ! operator ==(that);}
396 static UBool U_EXPORT2 matches(const UnicodeString ®ex,
415 static UBool U_EXPORT2 matches(UText *regex,
627 UBool fNeedsAltInput;
776 virtual UBool matches(UErrorCode &status);
789 virtual UBool matches(int64_t startIndex, UErrorCode &status);
805 virtual UBool lookingAt(UErrorCode &status);
821 virtual UBool lookingAt(int64_t startIndex, UErrorCode &status);
836 virtual UBool find();
853 virtual UBool find(UErrorCode &status);
864 virtual UBool find(int64_t start, UErrorCode &status);
1283 virtual UBool hasTransparentBounds() const;
1303 virtual RegexMatcher &useTransparentBounds(UBool b);
1313 virtual UBool hasAnchoringBounds() const;
1328 virtual RegexMatcher &useAnchoringBounds(UBool b);
1343 virtual UBool hitEnd() const;
1354 virtual UBool requireEnd() const;
1740 void setTrace(UBool state);
1780 void MatchAt(int64_t startIdx, UBool toEnd, UErrorCode &status);
1782 UBool isWordBoundary(int64_t pos); // perform Perl-like \b test
1783 UBool isUWordBoundary(int64_t pos); // perform RBBI based \b test
1789 inline UBool findProgressInterrupt(int64_t matchIndex, UErrorCode &status);
1793 UBool findUsingChunk(UErrorCode &status);
1794 void MatchChunkAt(int32_t startIdx, UBool toEnd, UErrorCode &status);
1795 UBool isChunkWordBoundary(int32_t pos);
1823 UBool fTransparentBounds; // True if using transparent bounds.
1824 UBool fAnchoringBounds; // True if using anchoring bounds.
1826 UBool fMatch; // True if the last attempted match was successful.
1837 UBool fHitEnd; // True if the last match touched the end of input.
1838 UBool fRequireEnd; // True if the last match required end-of-input
1870 …UBool fInputUniStrMaybeMutable; // Set when fInputText wraps a UnicodeString that m…
1872 UBool fTraceDebug; // Set true for debug tracing of match engine.