Home
last modified time | relevance | path

Searched refs:RegexPattern (Results 1 – 9 of 9) sorted by relevance

/external/icu/icu4c/source/i18n/
Drepattrn.cpp33 RegexPattern::RegexPattern() { in RegexPattern() function in RegexPattern
45 RegexPattern::RegexPattern(const RegexPattern &other) : UObject(other) { in RegexPattern() function in RegexPattern
57 RegexPattern &RegexPattern::operator = (const RegexPattern &other) { in operator =()
161 void RegexPattern::init() { in init()
216 void RegexPattern::zap() { in zap()
255 RegexPattern::~RegexPattern() { in ~RegexPattern()
265 RegexPattern *RegexPattern::clone() const { in clone()
266 RegexPattern *copy = new RegexPattern(*this); in clone()
279 UBool RegexPattern::operator ==(const RegexPattern &other) const { in operator ==()
301 RegexPattern * U_EXPORT2
[all …]
Dregexcmp.h38 class RegexPattern; variable
55 RegexCompile(RegexPattern *rp, UErrorCode &e);
132 RegexPattern *fRXPat;
Duregex.cpp37 RegexPattern *fPat;
155 re->fPat = RegexPattern::compile(&patText, flags, *pe, *status); in uregex_open()
157 re->fPat = RegexPattern::compile(&patText, flags, *status); in uregex_open()
238 re->fPat = RegexPattern::compile(&patText, flags, *pe, *status); in uregex_openUText()
240 re->fPat = RegexPattern::compile(&patText, flags, *status); in uregex_openUText()
Drematch.cpp66 RegexMatcher::RegexMatcher(const RegexPattern *pat) { in RegexMatcher()
89 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status); in RegexMatcher()
108 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status); in RegexMatcher()
125 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status); in RegexMatcher()
140 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status); in RegexMatcher()
1593 const RegexPattern &RegexMatcher::pattern() const { in pattern()
Dregexcmp.cpp52 RegexCompile::RegexCompile(RegexPattern *rxp, UErrorCode &status) : in RegexCompile()
/external/icu/icu4c/source/i18n/unicode/
Dregex.h65 class RegexPattern; variable
85 class U_I18N_API RegexPattern U_FINAL : public UObject {
95 RegexPattern();
103 RegexPattern(const RegexPattern &source);
110 virtual ~RegexPattern();
120 UBool operator==(const RegexPattern& that) const;
130 inline UBool operator!=(const RegexPattern& that) const {return ! operator ==(that);}
137 RegexPattern &operator =(const RegexPattern &source);
146 virtual RegexPattern *clone() const;
173 static RegexPattern * U_EXPORT2 compile( const UnicodeString &regex,
[all …]
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp397 RegexPattern *REPattern = NULL; in doRegexLMTest()
402 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest()
460 RegexPattern *REPattern = NULL; in doRegexLMTestUTF8()
465 REPattern = RegexPattern::compile(&pattern, 0, pe, status); in doRegexLMTestUTF8()
550 RegexPattern *callerPattern = NULL; in regex_err()
556 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err()
575 callerPattern = RegexPattern::compile(&patternText, 0, pe, status); in regex_err()
611 RegexPattern *pattern; in Basic()
612 …pattern = RegexPattern::compile(UNICODE_STRING_SIMPLE("a\\u00dfx").unescape(), UREGEX_CASE_INSENSI… in Basic()
804 RegexPattern *pat2; in API_Match()
[all …]
/external/icu/icu4c/source/tools/genrb/
Dprscmnts.cpp95 RegexPattern *pattern = RegexPattern::compile(UnicodeString("@"), 0, *status); in getText()
130RegexPattern *pattern = RegexPattern::compile(UnicodeString("@"), UREGEX_MULTILINE, *status); in getDescription()
154RegexPattern *pattern = RegexPattern::compile(UnicodeString("@"), UREGEX_MULTILINE, *status); in getCount()
194RegexPattern *pattern = RegexPattern::compile(UnicodeString("@"), UREGEX_MULTILINE, *status); in getAt()
/external/icu/icu4c/source/samples/ugrep/
Dugrep.cpp106 RegexPattern *rePat = RegexPattern::compile(pattern, parseErr, status); in main()