reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

usr/include/c++/7.4.0/bits/regex.h
   36     class basic_regex;

References

usr/include/c++/7.4.0/bits/regex.h
   59 		      const basic_regex<_CharT, _TraitsT>& __re,
  445       : basic_regex(__p, __p + char_traits<_Ch_type>::length(__p), __f)
  462       : basic_regex(__p, __p + __len, __f)
  470       basic_regex(const basic_regex& __rhs) = default;
  477       basic_regex(basic_regex&& __rhs) noexcept = default;
  493 	: basic_regex(__s.data(), __s.data() + __s.size(), __f)
  512 	: basic_regex(std::move(__first), std::move(__last), locale_type(), __f)
  524       : basic_regex(__l.begin(), __l.end(), __f)
  536       basic_regex&
  537       operator=(const basic_regex& __rhs)
  543       basic_regex&
  544       operator=(basic_regex&& __rhs) noexcept
  554       basic_regex&
  566       basic_regex&
  577 	basic_regex&
  587       basic_regex&
  588       assign(const basic_regex& __rhs)
  590 	basic_regex __tmp(__rhs);
  600       basic_regex&
  601       assign(basic_regex&& __rhs) noexcept
  603 	basic_regex __tmp(std::move(__rhs));
  621       basic_regex&
  638       basic_regex&
  654 	basic_regex&
  658 	  return this->assign(basic_regex(__s.data(), __s.data() + __s.size(),
  676 	basic_regex&
  692       basic_regex&
  746       swap(basic_regex& __rhs)
  777                           const basic_regex<_Cp, _Rp>&,
  831   typedef basic_regex<char>    regex;
  835   typedef basic_regex<wchar_t> wregex;
  847     swap(basic_regex<_Ch_type, _Rx_traits>& __lhs,
  848 	 basic_regex<_Ch_type, _Rx_traits>& __rhs)
 1913                           const basic_regex<_Cp, _Rp>&,
 2033 		const basic_regex<_Ch_type, _Rx_traits>& __re,
 2059 		const basic_regex<_Ch_type, _Rx_traits>& __re,
 2085 		const basic_regex<_Ch_type, _Rx_traits>& __re,
 2110 		const basic_regex<_Ch_type, _Rx_traits>& __re,
 2124 		const basic_regex<_Ch_type, _Rx_traits>&,
 2144 		const basic_regex<_Ch_type, _Rx_traits>& __re,
 2166 		const basic_regex<_Ch_type, _Rx_traits>& __re,
 2190 		 const basic_regex<_Ch_type, _Rx_traits>& __re,
 2213 		 const basic_regex<_Ch_type, _Rx_traits>& __re,
 2237 		 const basic_regex<_Ch_type, _Rx_traits>& __e,
 2255 		 const basic_regex<_Ch_type, _Rx_traits>& __e,
 2275 		 const basic_regex<_Ch_type, _Rx_traits>& __e,
 2299 		 const basic_regex<_Ch_type, _Rx_traits>& __e,
 2314 		 const basic_regex<_Ch_type, _Rx_traits>&,
 2337 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
 2362 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
 2382 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
 2408 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
 2434 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
 2460 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
 2487       typedef basic_regex<_Ch_type, _Rx_traits>  regex_type;
 2607       typedef basic_regex<_Ch_type, _Rx_traits> regex_type;
usr/include/c++/7.4.0/bits/regex.tcc
   51 		      const basic_regex<_CharT, _TraitsT>& __re,
  460 		  const basic_regex<_Ch_type, _Rx_traits>& __e,
usr/include/c++/7.4.0/bits/regex_executor.h
   62       typedef basic_regex<_CharT, _TraitsT>                 _RegexT;