Home
last modified time | relevance | path

Searched refs:_Base_type (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
Dalloc_traits.h55 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/std/
Dfuture798 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/
Dregex.h1768 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/
Dregex1784 _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/
DChangeLog-20194076 (match_results::_M_resize(unsigned int)): Use _Base_type::assign to
DChangeLog-20211824 (match_results::end()): Check _Base_type::empty() not empty().