Lines Matching refs:regex_match
2104 // [7.11.2] Function template regex_match
2130 regex_match(_Bi_iter __first, _Bi_iter __last,
2152 regex_match(_Bi_iter __first, _Bi_iter __last,
2158 return regex_match(__first, __last, __what, __re, __flags);
2177 regex_match(const _Ch_type* __s,
2182 { return regex_match(__s, __s + _Rx_traits::length(__s), __m, __re, __f); }
2201 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s,
2207 { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); }
2224 regex_match(const _Ch_type* __s,
2228 { return regex_match(__s, __s + _Rx_traits::length(__s), __re, __f); }
2246 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s,
2250 { return regex_match(__s.begin(), __s.end(), __re, __flags); }