Lines Matching refs:regex
21 #include "abg-regex.h"
39 regex::regex_t_sptr
41 {return regex::regex_t_sptr(p, regex::regex_t_deleter());}
49 regex::regex_t_sptr
53 namespace regex
56 /// Escape regex special charaters in input string.
79 /// Generate a regex pattern equivalent to testing set membership.
81 /// A string will match the resulting pattern regex, if and only if it
86 /// @return a regex pattern
91 // This cute-looking regex does not match any string.
102 /// Compile a regex from a string.
104 /// The result is held in a shared pointer. This will be null if regex
107 /// @param str the string representation of the regex.
109 /// @return shared pointer holder of a compiled regex object.
119 /// See if a string matches a regex.
121 /// @param r a shared pointer holder of a compiled regex object.
132 }//end namespace regex