Home | History | Annotate | Download | only in Support

Lines Matching refs:Regexp

96     // Get our prefix and unparsed regexp.
107 std::string Regexp = SplitRegexp.first;
110 // See if we can store Regexp in Strings.
111 if (Regex::isLiteralERE(Regexp)) {
112 Entries[Prefix][Category].Strings.insert(Regexp);
117 for (size_t pos = 0; (pos = Regexp.find("*", pos)) != std::string::npos;
119 Regexp.replace(pos, strlen("*"), ".*");
122 // Check that the regexp is valid.
123 Regex CheckRE(Regexp);
131 // Add this regexp into the proper group by its prefix.
134 Regexps[Prefix][Category] += "^" + Regexp + "$";