Lines Matching defs:re
1177 // FullMatch(str, re) returns true iff regular expression re matches
1179 // PartialMatch(str, re) returns true iff regular expression re
1184 static bool FullMatch(const ::std::string& str, const RE& re) {
1185 return FullMatch(str.c_str(), re);
1187 static bool PartialMatch(const ::std::string& str, const RE& re) {
1188 return PartialMatch(str.c_str(), re);
1193 static bool FullMatch(const ::string& str, const RE& re) {
1194 return FullMatch(str.c_str(), re);
1196 static bool PartialMatch(const ::string& str, const RE& re) {
1197 return PartialMatch(str.c_str(), re);
1202 static bool FullMatch(const char* str, const RE& re);
1203 static bool PartialMatch(const char* str, const RE& re);