Lines Matching refs:regex_match
1916 regex_match(_Bi_iter __s, in _GLIBCXX_VISIBILITY()
1947 regex_match(_Bi_iter __first, _Bi_iter __last, in _GLIBCXX_VISIBILITY()
1953 return regex_match(__first, __last, __what, __re, __flags); in _GLIBCXX_VISIBILITY()
1972 regex_match(const _Ch_type* __s, in _GLIBCXX_VISIBILITY()
1977 { return regex_match(__s, __s + _Rx_traits::length(__s), __m, __re, __f); } in _GLIBCXX_VISIBILITY()
1996 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s, in _GLIBCXX_VISIBILITY()
2002 { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); } in _GLIBCXX_VISIBILITY()
2019 regex_match(const _Ch_type* __s, in _GLIBCXX_VISIBILITY()
2023 { return regex_match(__s, __s + _Rx_traits::length(__s), __re, __f); } in _GLIBCXX_VISIBILITY()
2041 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s, in _GLIBCXX_VISIBILITY()
2045 { return regex_match(__s.begin(), __s.end(), __re, __flags); } in _GLIBCXX_VISIBILITY()