Home | History | Annotate | Download | only in unicode

Lines Matching refs:UBool

120     UBool           operator==(const RegexPattern& that) const;
130 inline UBool operator!=(const RegexPattern& that) const {return ! operator ==(that);}
356 * <code>UnicodeString(UBool isTerminated, const UChar *text, int32_t textLength);</code>
394 static UBool U_EXPORT2 matches(const UnicodeString &regex,
413 static UBool U_EXPORT2 matches(UText *regex,
625 UBool fNeedsAltInput;
754 * <code>UnicodeString(UBool isTerminated, const UChar *text, int32_t textLength);</code>
778 virtual UBool matches(UErrorCode &status);
791 virtual UBool matches(int64_t startIndex, UErrorCode &status);
807 virtual UBool lookingAt(UErrorCode &status);
823 virtual UBool lookingAt(int64_t startIndex, UErrorCode &status);
838 virtual UBool find();
854 virtual UBool find(UErrorCode &status);
865 virtual UBool find(int64_t start, UErrorCode &status);
1162 * <code>UnicodeString(UBool isTerminated, const UChar *text, int32_t textLength);</code>
1284 virtual UBool hasTransparentBounds() const;
1304 virtual RegexMatcher &useTransparentBounds(UBool b);
1314 virtual UBool hasAnchoringBounds() const;
1329 virtual RegexMatcher &useAnchoringBounds(UBool b);
1344 virtual UBool hitEnd() const;
1355 virtual UBool requireEnd() const;
1741 void setTrace(UBool state);
1781 void MatchAt(int64_t startIdx, UBool toEnd, UErrorCode &status);
1783 UBool isWordBoundary(int64_t pos); // perform Perl-like \b test
1784 UBool isUWordBoundary(int64_t pos); // perform RBBI based \b test
1790 inline UBool findProgressInterrupt(int64_t matchIndex, UErrorCode &status);
1794 UBool findUsingChunk(UErrorCode &status);
1795 void MatchChunkAt(int32_t startIdx, UBool toEnd, UErrorCode &status);
1796 UBool isChunkWordBoundary(int32_t pos);
1824 UBool fTransparentBounds; // True if using transparent bounds.
1825 UBool fAnchoringBounds; // True if using anchoring bounds.
1827 UBool fMatch; // True if the last attempted match was successful.
1838 UBool fHitEnd; // True if the last match touched the end of input.
1839 UBool fRequireEnd; // True if the last match required end-of-input
1871 UBool fInputUniStrMaybeMutable; // Set when fInputText wraps a UnicodeString that may be mutable - compatibility.
1873 UBool fTraceDebug; // Set true for debug tracing of match engine.