Lines Matching refs:int64_t

791     virtual UBool matches(int64_t startIndex, UErrorCode &status);
823 virtual UBool lookingAt(int64_t startIndex, UErrorCode &status);
865 virtual UBool find(int64_t start, UErrorCode &status);
916 virtual UText *group(UText *dest, int64_t &group_len, UErrorCode &status) const;
933 … virtual UText *group(int32_t groupNum, UText *dest, int64_t &group_len, UErrorCode &status) const;
951 virtual int64_t start64(UErrorCode &status) const;
982 virtual int64_t start64(int32_t group, UErrorCode &status) const;
1012 virtual int64_t end64(UErrorCode &status) const;
1051 virtual int64_t end64(int32_t group, UErrorCode &status) const;
1079 virtual RegexMatcher &reset(int64_t index, UErrorCode &status);
1210 virtual RegexMatcher &region(int64_t start, int64_t limit, UErrorCode &status);
1223 …virtual RegexMatcher &region(int64_t regionStart, int64_t regionLimit, int64_t startIndex, UErrorC…
1243 virtual int64_t regionStart64() const;
1264 virtual int64_t regionEnd64() const;
1771 void MatchAt(int64_t startIdx, UBool toEnd, UErrorCode &status);
1772 inline void backTrack(int64_t &inputIdx, int32_t &patIdx);
1773 UBool isWordBoundary(int64_t pos); // perform Perl-like \b test
1774 UBool isUWordBoundary(int64_t pos); // perform RBBI based \b test
1776 inline REStackFrame *StateSave(REStackFrame *fp, int64_t savePatIdx, UErrorCode &status);
1780 inline UBool findProgressInterrupt(int64_t matchIndex, UErrorCode &status);
1782 int64_t appendGroup(int32_t groupNum, UText *dest, UErrorCode &status) const;
1796 int64_t fInputLength; // Full length of the input text.
1799 int64_t fRegionStart; // Start of the input region, default = 0.
1800 int64_t fRegionLimit; // End of input region, default to input.length.
1802 int64_t fAnchorStart; // Region bounds for anchoring operations (^ or $).
1803 int64_t fAnchorLimit; // See useAnchoringBounds
1805 int64_t fLookStart; // Region bounds for look-ahead/behind and
1806 int64_t fLookLimit; // and other boundary tests. See
1809 int64_t fActiveStart; // Currently active bounds for matching.
1810 int64_t fActiveLimit; // Usually is the same as region, but
1818 int64_t fMatchStart; // Position of the start of the most recent match
1819 int64_t fMatchEnd; // First position after the end of the most recent match
1822 int64_t fLastMatchEnd; // First position after the end of the previous match,
1824 int64_t fAppendPosition; // First position after the end of the previous
1837 int64_t *fData; // Data area for use by the compiled pattern.
1838 int64_t fSmallData[8]; // Use this for data if it's enough.