Home | History | Annotate | Download | only in i18n

Lines Matching full:regex

17 #include "unicode/regex.h"
306 RegexPattern::compile(const UnicodeString &regex,
342 compiler.compile(regex, pe, status);
357 RegexPattern::compile(UText *regex,
393 compiler.compile(regex, pe, status);
407 RegexPattern::compile(const UnicodeString &regex,
411 return compile(regex, 0, pe, err);
419 RegexPattern::compile(UText *regex,
423 return compile(regex, 0, pe, err);
431 RegexPattern::compile(const UnicodeString &regex,
436 return compile(regex, flags, pe, err);
444 RegexPattern::compile(UText *regex,
449 return compile(regex, flags, pe, err);
511 UBool U_EXPORT2 RegexPattern::matches(const UnicodeString &regex,
522 pat = RegexPattern::compile(regex, 0, pe, status);
535 UBool U_EXPORT2 RegexPattern::matches(UText *regex,
546 pat = RegexPattern::compile(regex, 0, pe, status);