| 1160 | return FullMatch(str.c_str(), re); |
| 1161 | } |
| 1162 | static bool PartialMatch(const ::std::string& str, const RE& re) { |
| 1163 | return PartialMatch(str.c_str(), re); |
| 1164 | } |
| 1165 | |
| 1166 | static bool FullMatch(const char* str, const RE& re); |
| 1167 | static bool PartialMatch(const char* str, const RE& re); |