/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
H A D | alloc_traits.h | 55 typedef std::allocator_traits<_Alloc> _Base_type; in _GLIBCXX_VISIBILITY() typedef 56 typedef typename _Base_type::value_type value_type; in _GLIBCXX_VISIBILITY() 57 typedef typename _Base_type::pointer pointer; in _GLIBCXX_VISIBILITY() 58 typedef typename _Base_type::const_pointer const_pointer; in _GLIBCXX_VISIBILITY() 59 typedef typename _Base_type::size_type size_type; in _GLIBCXX_VISIBILITY() 60 typedef typename _Base_type::difference_type difference_type; in _GLIBCXX_VISIBILITY() 64 using _Base_type::allocate; in _GLIBCXX_VISIBILITY() 65 using _Base_type::deallocate; in _GLIBCXX_VISIBILITY() 66 using _Base_type::construct; in _GLIBCXX_VISIBILITY() 67 using _Base_type::destroy; in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
H A D | alloc_traits.h | 55 typedef std::allocator_traits<_Alloc> _Base_type; in _GLIBCXX_VISIBILITY() typedef 56 typedef typename _Base_type::value_type value_type; in _GLIBCXX_VISIBILITY() 57 typedef typename _Base_type::pointer pointer; in _GLIBCXX_VISIBILITY() 58 typedef typename _Base_type::const_pointer const_pointer; in _GLIBCXX_VISIBILITY() 59 typedef typename _Base_type::size_type size_type; in _GLIBCXX_VISIBILITY() 60 typedef typename _Base_type::difference_type difference_type; in _GLIBCXX_VISIBILITY() 64 using _Base_type::allocate; in _GLIBCXX_VISIBILITY() 65 using _Base_type::deallocate; in _GLIBCXX_VISIBILITY() 66 using _Base_type::construct; in _GLIBCXX_VISIBILITY() 67 using _Base_type::destroy; in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/ |
H A D | shared_ptr.h | 65 using _Base_type = __shared_ptr<_Tp>; in _GLIBCXX_VISIBILITY() local 68 using element_type = typename _Base_type::element_type; in _GLIBCXX_VISIBILITY() 94 shared_ptr(_Tp1* __p) : _Base_type(__p) in _GLIBCXX_VISIBILITY() 99 : _Base_type(__p, __d) in _GLIBCXX_VISIBILITY() 105 : _Base_type(__p, __d, __a) in _GLIBCXX_VISIBILITY() 110 : _Base_type(__p, __d) { } in _GLIBCXX_VISIBILITY() 114 : _Base_type(__p, __d, __a) { } in _GLIBCXX_VISIBILITY() 118 : _Base_type(__r, __p) { } in _GLIBCXX_VISIBILITY() 121 : _Base_type(__r) { } in _GLIBCXX_VISIBILITY() 125 : _Base_type(__r) { } in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
H A D | shared_ptr.h | 65 using _Base_type = __shared_ptr<_Tp>; in _GLIBCXX_VISIBILITY() local 68 using element_type = typename _Base_type::element_type; in _GLIBCXX_VISIBILITY() 94 shared_ptr(_Tp1* __p) : _Base_type(__p) in _GLIBCXX_VISIBILITY() 99 : _Base_type(__p, __d) in _GLIBCXX_VISIBILITY() 105 : _Base_type(__p, __d, __a) in _GLIBCXX_VISIBILITY() 110 : _Base_type(__p, __d) { } in _GLIBCXX_VISIBILITY() 114 : _Base_type(__p, __d, __a) { } in _GLIBCXX_VISIBILITY() 118 : _Base_type(__r, __p) { } in _GLIBCXX_VISIBILITY() 121 : _Base_type(__r) { } in _GLIBCXX_VISIBILITY() 125 : _Base_type(__r) { } in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | regex.h | 1697 typedef std::vector<sub_match<_Bi_iter>, _Alloc> _Base_type; in _GLIBCXX_VISIBILITY() typedef 1709 typedef typename _Base_type::const_iterator const_iterator; in _GLIBCXX_VISIBILITY() 1736 : _Base_type(__a) in _GLIBCXX_VISIBILITY() 1774 bool ready() const noexcept { return !_Base_type::empty(); } in _GLIBCXX_VISIBILITY() 1792 { return _Base_type::empty() ? 0 : _Base_type::size() - 3; } in _GLIBCXX_VISIBILITY() 1796 { return _Base_type::max_size() - 3; } in _GLIBCXX_VISIBILITY() 1805 { return _Base_type::size() <= 3; } in _GLIBCXX_VISIBILITY() 1870 ? _Base_type::operator[](__sub) in _GLIBCXX_VISIBILITY() 1909 { return _Base_type::begin(); } in _GLIBCXX_VISIBILITY() 1923 { return _Base_type::end() - (_Base_type::empty() ? 0 : 3); } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | regex.tcc | 59 typename match_results<_BiIter, _Alloc>::_Base_type& __res = __m; in __regex_algo_impl()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | future | 780 typedef __basic_future<_Res> _Base_type; 781 typedef typename _Base_type::__state_type __state_type; 784 future(const __state_type& __state) : _Base_type(__state) { } 787 constexpr future() noexcept : _Base_type() { } 790 future(future&& __uf) noexcept : _Base_type(std::move(__uf)) { } 806 typename _Base_type::_Reset __reset(*this); 823 typedef __basic_future<_Res&> _Base_type; 824 typedef typename _Base_type::__state_type __state_type; 827 future(const __state_type& __state) : _Base_type(__state) { } 830 constexpr future() noexcept : _Base_type() { } [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | future | 798 typedef __basic_future<_Res> _Base_type; 799 typedef typename _Base_type::__state_type __state_type; 802 future(const __state_type& __state) : _Base_type(__state) { } 805 constexpr future() noexcept : _Base_type() { } 808 future(future&& __uf) noexcept : _Base_type(std::move(__uf)) { } 824 typename _Base_type::_Reset __reset(*this); 841 typedef __basic_future<_Res&> _Base_type; 842 typedef typename _Base_type::__state_type __state_type; 845 future(const __state_type& __state) : _Base_type(__state) { } 848 constexpr future() noexcept : _Base_type() { } [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | regex.h | 1768 typedef std::vector<sub_match<_Bi_iter>, _Alloc> _Base_type; in _GLIBCXX_VISIBILITY() 1782 typedef typename _Base_type::const_iterator const_iterator; in _GLIBCXX_VISIBILITY() 1809 : _Base_type(__a) in _GLIBCXX_VISIBILITY() 1843 : _Base_type(__m, __a) { } in _GLIBCXX_VISIBILITY() 1846 noexcept(noexcept(_Base_type(std::move(__m), __a))) in _GLIBCXX_VISIBILITY() 1847 : _Base_type(std::move(__m), __a) { } in _GLIBCXX_VISIBILITY() 1992 { return _Base_type::begin(); } in _GLIBCXX_VISIBILITY() 2006 { return _Base_type::end() - (_Base_type::empty() ? 0 : 3); } in _GLIBCXX_VISIBILITY() 2088 { return _Base_type::get_allocator(); } in _GLIBCXX_VISIBILITY() 2104 _Base_type::swap(__that); in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
H A D | regex | 1784 _Base_type; 1792 typedef typename _Base_type::const_reference const_reference; 1794 typedef typename _Base_type::const_iterator const_iterator; 1816 : _Base_type(__a), _M_matched(false) 1823 : _Base_type(__rhs), _M_matched(__rhs._M_matched), 1862 { return _M_matched ? _Base_type::size() + 1 : 0; } 1866 using _Base_type::max_size; 1935 { return _Base_type::operator[](__sub); } 1964 { return _Base_type::begin(); } 1972 { return _Base_type::begin(); } [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
H A D | regex | 1784 _Base_type; 1792 typedef typename _Base_type::const_reference const_reference; 1794 typedef typename _Base_type::const_iterator const_iterator; 1816 : _Base_type(__a), _M_matched(false) 1823 : _Base_type(__rhs), _M_matched(__rhs._M_matched), 1862 { return _M_matched ? _Base_type::size() + 1 : 0; } 1866 using _Base_type::max_size; 1935 { return _Base_type::operator[](__sub); } 1964 { return _Base_type::begin(); } 1972 { return _Base_type::begin(); } [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/ |
H A D | ChangeLog-2019 | 4076 (match_results::_M_resize(unsigned int)): Use _Base_type::assign to
|
H A D | ChangeLog-2021 | 1824 (match_results::end()): Check _Base_type::empty() not empty().
|