Lines Matching refs:regex_match
2107 // [7.11.2] Function template regex_match
2133 regex_match(_Bi_iter __first, _Bi_iter __last,
2155 regex_match(_Bi_iter __first, _Bi_iter __last,
2161 return regex_match(__first, __last, __what, __re, __flags);
2180 regex_match(const _Ch_type* __s,
2185 { return regex_match(__s, __s + _Rx_traits::length(__s), __m, __re, __f); }
2204 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s,
2210 { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); }
2227 regex_match(const _Ch_type* __s,
2231 { return regex_match(__s, __s + _Rx_traits::length(__s), __re, __f); }
2249 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s,
2253 { return regex_match(__s.begin(), __s.end(), __re, __flags); }