Home | History | Annotate | Download | only in re2

Lines Matching full:regular

6 // If you want to use this library for regular expression matching,
14 // Regular expression library: parsing, execution, and manipulation
15 // of regular expressions.
19 // regular expressions such as x++++++++++++++++++++... might cause recursive
27 // Regexp::Parse parses regular expressions encoded in UTF-8.
28 // The default syntax is POSIX extended regular expressions,
42 // If parsed with the flag Regexp::Latin1, both the regular expression
48 // Once Regexp has parsed a regular expression, it provides methods
49 // to search text using that regular expression. These methods are
50 // implemented via calling out to other regular expression libraries.
54 // string version of the regular expression and hand it to the
60 // 1. The syntax and meaning of regular expressions is guaranteed
63 // expanded syntax for regular expressions as compared with
69 // sublibrary regular expression parsers often have security
70 // problems. For example, plan9grep's regular expression parser
74 // regular expression parsers. Avoiding the sublibrary parsers
82 // Unlike other regular expression libraries, Regexp makes its parsed
84 // parsed regular expressions.
341 // Parses string s to produce regular expression, returned.