Lines Matching refs:int64_t
774 virtual UBool matches(int64_t startIndex, UErrorCode &status);
806 virtual UBool lookingAt(int64_t startIndex, UErrorCode &status);
833 virtual UBool find(int64_t start, UErrorCode &status);
885 virtual UText *group(UText *dest, int64_t &group_len, UErrorCode &status) const;
902 … virtual UText *group(int32_t groupNum, UText *dest, int64_t &group_len, UErrorCode &status) const;
938 virtual int64_t start64(UErrorCode &status) const;
969 virtual int64_t start64(int32_t group, UErrorCode &status) const;
1000 virtual int64_t end64(UErrorCode &status) const;
1039 virtual int64_t end64(int32_t group, UErrorCode &status) const;
1068 virtual RegexMatcher &reset(int64_t index, UErrorCode &status);
1200 virtual RegexMatcher ®ion(int64_t start, int64_t limit, UErrorCode &status);
1213 …virtual RegexMatcher ®ion(int64_t regionStart, int64_t regionLimit, int64_t startIndex, UErrorC…
1233 virtual int64_t regionStart64() const;
1254 virtual int64_t regionEnd64() const;
1759 void MatchAt(int64_t startIdx, UBool toEnd, UErrorCode &status);
1760 inline void backTrack(int64_t &inputIdx, int32_t &patIdx);
1761 UBool isWordBoundary(int64_t pos); // perform Perl-like \b test
1762 UBool isUWordBoundary(int64_t pos); // perform RBBI based \b test
1764 inline REStackFrame *StateSave(REStackFrame *fp, int64_t savePatIdx, UErrorCode &status);
1766 UBool ReportFindProgress(int64_t matchIndex, UErrorCode &status);
1768 int64_t appendGroup(int32_t groupNum, UText *dest, UErrorCode &status) const;
1782 int64_t fInputLength; // Full length of the input text.
1785 int64_t fRegionStart; // Start of the input region, default = 0.
1786 int64_t fRegionLimit; // End of input region, default to input.length.
1788 int64_t fAnchorStart; // Region bounds for anchoring operations (^ or $).
1789 int64_t fAnchorLimit; // See useAnchoringBounds
1791 int64_t fLookStart; // Region bounds for look-ahead/behind and
1792 int64_t fLookLimit; // and other boundary tests. See
1795 int64_t fActiveStart; // Currently active bounds for matching.
1796 int64_t fActiveLimit; // Usually is the same as region, but
1804 int64_t fMatchStart; // Position of the start of the most recent match
1805 int64_t fMatchEnd; // First position after the end of the most recent match
1808 int64_t fLastMatchEnd; // First position after the end of the previous match,
1810 int64_t fAppendPosition; // First position after the end of the previous
1823 int64_t *fData; // Data area for use by the compiled pattern.
1824 int64_t fSmallData[8]; // Use this for data if it's enough.