Home | History | Annotate | Download | only in re2

Lines Matching full:regular

8 // C++ interface to the re2 regular-expression library.
9 // RE2 supports Perl-style regular expressions (with extensions like
16 // its syntax for regular expressions, which is similar to Perl's with
23 // For those not familiar with Perl's regular expressions,
100 // PRE-COMPILED REGULAR EXPRESSIONS
102 // RE2 makes it easy to use any string as a regular expression, without
119 // match regular expressions at the front of a string and skip over
135 // regular expression matches an empty string, input will advance
136 // by 0 bytes. If the regular expression being used might match
150 // example, the regular expression may be calculated at run time).
196 // Interface for regular expression matching. Also corresponds to a
197 // pre-compiled regular expression. An "RE2" object is safe for
384 // 'unquoted'. The returned string, used as a regular expression,
461 // regular expression. It checks that:
462 // * The regular expression has enough parenthesized subexpressions
687 string pattern_; // string regular expression
691 re2::Regexp* entire_regexp_; // parsed regular expression
692 re2::Regexp* suffix_regexp_; // parsed regular expression, prefix removed