Home | History | Annotate | Download | only in bits

Lines Matching refs:regex_match

1886   // [7.11.2] Function template regex_match
1912 regex_match(_Bi_iter __s,
1943 regex_match(_Bi_iter __first, _Bi_iter __last,
1949 return regex_match(__first, __last, __what, __re, __flags);
1968 regex_match(const _Ch_type* __s,
1973 { return regex_match(__s, __s + _Rx_traits::length(__s), __m, __re, __f); }
1992 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s,
1998 { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); }
2015 regex_match(const _Ch_type* __s,
2019 { return regex_match(__s, __s + _Rx_traits::length(__s), __re, __f); }
2037 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s,
2041 { return regex_match(__s.begin(), __s.end(), __re, __flags); }