Home | History | Annotate | Download | only in i18n

Lines Matching full:regex

15 #include "unicode/regex.h"
270 RegexPattern::compile(const UnicodeString &regex,
306 compiler.compile(regex, pe, status);
321 RegexPattern::compile(UText *regex,
357 compiler.compile(regex, pe, status);
371 RegexPattern::compile(const UnicodeString &regex,
375 return compile(regex, 0, pe, err);
383 RegexPattern::compile(UText *regex,
387 return compile(regex, 0, pe, err);
395 RegexPattern::compile(const UnicodeString &regex,
400 return compile(regex, flags, pe, err);
408 RegexPattern::compile(UText *regex,
413 return compile(regex, flags, pe, err);
475 UBool U_EXPORT2 RegexPattern::matches(const UnicodeString &regex,
486 pat = RegexPattern::compile(regex, 0, pe, status);
499 UBool U_EXPORT2 RegexPattern::matches(UText *regex,
510 pat = RegexPattern::compile(regex, 0, pe, status);