/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++20/ |
H A D | sstream-inst.cc | 39 template basic_stringbuf<char>::basic_stringbuf(const allocator_type&); 41 const allocator_type&); 45 const allocator_type&); 47 const allocator_type&, 49 template basic_stringbuf<char>::allocator_type 61 const allocator_type&); 74 const allocator_type&); 87 const allocator_type&); 100 template basic_stringbuf<wchar_t>::basic_stringbuf(const allocator_type&); 102 const allocator_type&); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
H A D | unordered_set.h | 63 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 69 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 80 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 112 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 118 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 130 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 183 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 189 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 198 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 232 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef [all …]
|
H A D | unordered_map.h | 63 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 69 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 80 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 114 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 120 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 132 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 190 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 196 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 205 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 242 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
H A D | unordered_set.h | 63 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 69 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 80 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 112 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 118 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 130 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 183 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 189 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 198 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 232 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef [all …]
|
H A D | unordered_map.h | 63 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 69 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 80 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 114 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 120 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 132 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 190 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 196 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 205 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 242 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/ |
H A D | allocator_traits.h | 230 using allocator_type = _Alloc; 231 using value_type = typename allocator_type::value_type; 232 using pointer = typename __pointer<value_type, allocator_type>::type; 233 using const_pointer = typename __const_pointer<value_type, pointer, allocator_type>::type; 234 using void_pointer = typename __void_pointer<pointer, allocator_type>::type; 235 using const_void_pointer = typename __const_void_pointer<pointer, allocator_type>::type; 236 using difference_type = typename __alloc_traits_difference_type<allocator_type, pointer>::type; 237 using size_type = typename __size_type<allocator_type, difference_type>::type; 238 …ontainer_copy_assignment = typename __propagate_on_container_copy_assignment<allocator_type>::type; 239 …ontainer_move_assignment = typename __propagate_on_container_move_assignment<allocator_type>::type; [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/ |
H A D | allocator.d | 222 alias allocator_type = Alloc; in allocator_traits() local 224 alias value_type = allocator_type.value_type; in allocator_traits() 226 alias size_type = allocator_type.size_type; in allocator_traits() 228 alias difference_type = allocator_type.difference_type; in allocator_traits() 230 alias pointer = allocator_type.pointer; in allocator_traits() 233 …enum propagate_on_container_copy_assignment = isTrue!(allocator_type, "propagate_on_container_copy… in allocator_traits() 235 …enum propagate_on_container_move_assignment = isTrue!(allocator_type, "propagate_on_container_move… in allocator_traits() 237 enum propagate_on_container_swap = isTrue!(allocator_type, "propagate_on_container_swap"); in allocator_traits() 239 enum is_always_equal = isTrue!(allocator_type, "is_always_equal"); in allocator_traits() 244 static if (__traits(hasMember, allocator_type, "rebind")) in allocator_traits() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/ |
H A D | unordered_set | 68 typedef typename _Base::allocator_type allocator_type; 84 const allocator_type& __a = allocator_type()) 93 const allocator_type& __a = allocator_type()) 106 unordered_set(const allocator_type& __a) 111 const allocator_type& __a) 116 const allocator_type& __a) 124 const allocator_type& __a = allocator_type()) 128 unordered_set(size_type __n, const allocator_type& __a) 133 const allocator_type& __a) 140 const allocator_type& __a) [all …]
|
H A D | unordered_map | 68 typedef typename _Base::allocator_type allocator_type; 85 const allocator_type& __a = allocator_type()) 93 const allocator_type& __a = allocator_type()) 104 unordered_map(const allocator_type& __a) 108 const allocator_type& __a) 112 const allocator_type& __a) 119 const allocator_type& __a = allocator_type()) 122 unordered_map(size_type __n, const allocator_type& __a) 127 const allocator_type& __a) 134 const allocator_type& __a) [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | set | 30 typedef Allocator allocator_type; 31 typedef typename allocator_type::reference reference; 32 typedef typename allocator_type::const_reference const_reference; 33 typedef typename allocator_type::size_type size_type; 34 typedef typename allocator_type::difference_type difference_type; 35 typedef typename allocator_type::pointer pointer; 36 typedef typename allocator_type::const_pointer const_pointer; 48 is_nothrow_default_constructible<allocator_type>::value && 52 set(const value_compare& comp, const allocator_type& a); 58 const allocator_type& a); [all …]
|
H A D | unordered_set | 32 typedef Alloc allocator_type; 35 typedef typename allocator_traits<allocator_type>::pointer pointer; 36 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer; 37 typedef typename allocator_traits<allocator_type>::size_type size_type; 38 typedef typename allocator_traits<allocator_type>::difference_type difference_type; 52 is_nothrow_default_constructible<allocator_type>::value); 55 const allocator_type& a = allocator_type()); 60 const allocator_type& a = allocator_type()); 61 explicit unordered_set(const allocator_type&); 68 is_nothrow_move_constructible<allocator_type>::value); [all …]
|
H A D | vector | 24 typedef Allocator allocator_type; 25 typedef typename allocator_type::reference reference; 26 typedef typename allocator_type::const_reference const_reference; 29 typedef typename allocator_type::size_type size_type; 30 typedef typename allocator_type::difference_type difference_type; 31 typedef typename allocator_type::pointer pointer; 32 typedef typename allocator_type::const_pointer const_pointer; 37 noexcept(is_nothrow_default_constructible<allocator_type>::value); 38 explicit vector(const allocator_type&); 40 explicit vector(size_type n, const allocator_type&); // C++14 [all …]
|
H A D | map | 30 typedef Allocator allocator_type; 31 typedef typename allocator_type::reference reference; 32 typedef typename allocator_type::const_reference const_reference; 33 typedef typename allocator_type::pointer pointer; 34 typedef typename allocator_type::const_pointer const_pointer; 35 typedef typename allocator_type::size_type size_type; 36 typedef typename allocator_type::difference_type difference_type; 60 is_nothrow_default_constructible<allocator_type>::value && 64 map(const key_compare& comp, const allocator_type& a); 70 const key_compare& comp, const allocator_type& a); [all …]
|
H A D | unordered_map | 32 typedef Alloc allocator_type; 36 typedef typename allocator_traits<allocator_type>::pointer pointer; 37 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer; 38 typedef typename allocator_traits<allocator_type>::size_type size_type; 39 typedef typename allocator_traits<allocator_type>::difference_type difference_type; 53 is_nothrow_default_constructible<allocator_type>::value); 56 const allocator_type& a = allocator_type()); 61 const allocator_type& a = allocator_type()); 62 explicit unordered_map(const allocator_type&); 69 is_nothrow_move_constructible<allocator_type>::value); [all …]
|
H A D | sstream | 26 typedef Allocator allocator_type; 32 explicit basic_stringbuf(const basic_string<char_type, traits_type, allocator_type>& str, 41 basic_string<char_type, traits_type, allocator_type> str() const; 42 void str(const basic_string<char_type, traits_type, allocator_type>& s); 73 typedef Allocator allocator_type; 80 explicit basic_istringstream(const basic_string<char_type, traits_type,allocator_type>& str, 89 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const; 90 basic_string<char_type, traits_type, allocator_type> str() const; 91 void str(const basic_string<char_type, traits_type, allocator_type>& s); 112 typedef Allocator allocator_type; [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ext/ |
H A D | hash_set | 30 typedef Alloc allocator_type; 33 typedef typename allocator_traits<allocator_type>::pointer pointer; 34 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer; 35 typedef typename allocator_traits<allocator_type>::size_type size_type; 36 typedef typename allocator_traits<allocator_type>::difference_type difference_type; 43 const allocator_type& a = allocator_type()); 48 const allocator_type& a = allocator_type()); 53 allocator_type get_allocator() const; 116 typedef Alloc allocator_type; 119 typedef typename allocator_traits<allocator_type>::pointer pointer; [all …]
|
H A D | hash_map | 30 typedef Alloc allocator_type; 34 typedef typename allocator_traits<allocator_type>::pointer pointer; 35 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer; 36 typedef typename allocator_traits<allocator_type>::size_type size_type; 37 typedef typename allocator_traits<allocator_type>::difference_type difference_type; 45 const allocator_type& a = allocator_type()); 52 const allocator_type& a = allocator_type()); 57 allocator_type get_allocator() const; 122 typedef Alloc allocator_type; 126 typedef typename allocator_traits<allocator_type>::pointer pointer; [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | unordered_set.h | 110 typedef typename _Hashtable::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 148 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 170 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 185 unordered_set(const allocator_type& __a) in _GLIBCXX_VISIBILITY() 195 const allocator_type& __a) in _GLIBCXX_VISIBILITY() 205 const allocator_type& __a) in _GLIBCXX_VISIBILITY() 225 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 229 unordered_set(size_type __n, const allocator_type& __a) in _GLIBCXX_VISIBILITY() 234 const allocator_type& __a) in _GLIBCXX_VISIBILITY() 241 const allocator_type& __a) in _GLIBCXX_VISIBILITY() [all …]
|
H A D | alloc_traits.h | 89 typedef _Alloc allocator_type; in _GLIBCXX_VISIBILITY() 410 using allocator_type = allocator<_Tp>; in _GLIBCXX_VISIBILITY() 459 allocate(allocator_type& __a, size_type __n) in _GLIBCXX_VISIBILITY() 473 allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) in _GLIBCXX_VISIBILITY() 491 deallocate(allocator_type& __a, pointer __p, size_type __n) in _GLIBCXX_VISIBILITY() 507 construct(allocator_type& __a __attribute__((__unused__)), _Up* __p, in _GLIBCXX_VISIBILITY() 527 destroy(allocator_type& __a __attribute__((__unused__)), _Up* __p) in _GLIBCXX_VISIBILITY() 543 max_size(const allocator_type& __a __attribute__((__unused__))) noexcept in _GLIBCXX_VISIBILITY() 557 static _GLIBCXX20_CONSTEXPR allocator_type in _GLIBCXX_VISIBILITY() 558 select_on_container_copy_construction(const allocator_type& __rhs) in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | unordered_set.h | 112 typedef typename _Hashtable::allocator_type allocator_type; in _GLIBCXX_VISIBILITY() typedef 150 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 172 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 187 unordered_set(const allocator_type& __a) in _GLIBCXX_VISIBILITY() 197 const allocator_type& __a) in _GLIBCXX_VISIBILITY() 207 const allocator_type& __a) in _GLIBCXX_VISIBILITY() 227 const allocator_type& __a = allocator_type()) in _GLIBCXX_VISIBILITY() 231 unordered_set(size_type __n, const allocator_type& __a) in _GLIBCXX_VISIBILITY() 236 const allocator_type& __a) in _GLIBCXX_VISIBILITY() 243 const allocator_type& __a) in _GLIBCXX_VISIBILITY() [all …]
|
H A D | alloc_traits.h | 93 typedef _Alloc allocator_type; in _GLIBCXX_VISIBILITY() 414 using allocator_type = allocator<_Tp>; in _GLIBCXX_VISIBILITY() 463 allocate(allocator_type& __a, size_type __n) in _GLIBCXX_VISIBILITY() 477 allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) in _GLIBCXX_VISIBILITY() 495 deallocate(allocator_type& __a, pointer __p, size_type __n) in _GLIBCXX_VISIBILITY() 511 construct(allocator_type& __a __attribute__((__unused__)), _Up* __p, in _GLIBCXX_VISIBILITY() 531 destroy(allocator_type& __a __attribute__((__unused__)), _Up* __p) in _GLIBCXX_VISIBILITY() 547 max_size(const allocator_type& __a __attribute__((__unused__))) noexcept in _GLIBCXX_VISIBILITY() 561 static _GLIBCXX20_CONSTEXPR allocator_type in _GLIBCXX_VISIBILITY() 562 select_on_container_copy_construction(const allocator_type& __rhs) in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/ |
H A D | hash_set | 114 typedef typename _Ht::allocator_type allocator_type; 124 allocator_type 129 : _M_ht(100, hasher(), key_equal(), allocator_type()) {} 133 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 136 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 139 const allocator_type& __a = allocator_type()) 144 : _M_ht(100, hasher(), key_equal(), allocator_type()) 149 : _M_ht(__n, hasher(), key_equal(), allocator_type()) 155 : _M_ht(__n, __hf, key_equal(), allocator_type()) 161 const allocator_type& __a = allocator_type()) [all …]
|
H A D | hash_map | 110 typedef typename _Ht::allocator_type allocator_type; 120 allocator_type 125 : _M_ht(100, hasher(), key_equal(), allocator_type()) {} 129 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 132 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 135 const allocator_type& __a = allocator_type()) 140 : _M_ht(100, hasher(), key_equal(), allocator_type()) 145 : _M_ht(__n, hasher(), key_equal(), allocator_type()) 151 : _M_ht(__n, __hf, key_equal(), allocator_type()) 157 const allocator_type& __a = allocator_type()) [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/ |
H A D | hash_set | 114 typedef typename _Ht::allocator_type allocator_type; 124 allocator_type 129 : _M_ht(100, hasher(), key_equal(), allocator_type()) {} 133 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 136 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 139 const allocator_type& __a = allocator_type()) 144 : _M_ht(100, hasher(), key_equal(), allocator_type()) 149 : _M_ht(__n, hasher(), key_equal(), allocator_type()) 155 : _M_ht(__n, __hf, key_equal(), allocator_type()) 161 const allocator_type& __a = allocator_type()) [all …]
|
H A D | hash_map | 110 typedef typename _Ht::allocator_type allocator_type; 120 allocator_type 125 : _M_ht(100, hasher(), key_equal(), allocator_type()) {} 129 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 132 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 135 const allocator_type& __a = allocator_type()) 140 : _M_ht(100, hasher(), key_equal(), allocator_type()) 145 : _M_ht(__n, hasher(), key_equal(), allocator_type()) 151 : _M_ht(__n, __hf, key_equal(), allocator_type()) 157 const allocator_type& __a = allocator_type()) [all …]
|