/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_map.h | 115 bool operator()(const value_type& __x, const value_type& __y) const 116 { return comp(__x.first, __y.first); } 170 map(const map& __x) 171 : _M_t(__x._M_t) { } 181 map(map&& __x) 182 : _M_t(std::forward<_Rep_type>(__x._M_t)) { } 251 operator=(const map& __x) 253 _M_t = __x._M_t; 266 operator=(map&& __x) 270 this->swap(__x); [all...] |
stl_multimap.h | 115 bool operator()(const value_type& __x, const value_type& __y) const 116 { return comp(__x.first, __y.first); } 168 multimap(const multimap& __x) 169 : _M_t(__x._M_t) { } 179 multimap(multimap&& __x) 180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { } 248 operator=(const multimap& __x) 250 _M_t = __x._M_t; 263 operator=(multimap&& __x) 267 this->swap(__x); [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_map.h | 115 bool operator()(const value_type& __x, const value_type& __y) const 116 { return comp(__x.first, __y.first); } 170 map(const map& __x) 171 : _M_t(__x._M_t) { } 181 map(map&& __x) 182 : _M_t(std::forward<_Rep_type>(__x._M_t)) { } 251 operator=(const map& __x) 253 _M_t = __x._M_t; 266 operator=(map&& __x) 270 this->swap(__x); [all...] |
stl_multimap.h | 115 bool operator()(const value_type& __x, const value_type& __y) const 116 { return comp(__x.first, __y.first); } 168 multimap(const multimap& __x) 169 : _M_t(__x._M_t) { } 179 multimap(multimap&& __x) 180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { } 248 operator=(const multimap& __x) 250 _M_t = __x._M_t; 263 operator=(multimap&& __x) 267 this->swap(__x); [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_map.h | 115 bool operator()(const value_type& __x, const value_type& __y) const 116 { return comp(__x.first, __y.first); } 170 map(const map& __x) 171 : _M_t(__x._M_t) { } 181 map(map&& __x) 182 : _M_t(std::forward<_Rep_type>(__x._M_t)) { } 251 operator=(const map& __x) 253 _M_t = __x._M_t; 266 operator=(map&& __x) 270 this->swap(__x); [all...] |
stl_multimap.h | 115 bool operator()(const value_type& __x, const value_type& __y) const 116 { return comp(__x.first, __y.first); } 168 multimap(const multimap& __x) 169 : _M_t(__x._M_t) { } 179 multimap(multimap&& __x) 180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { } 248 operator=(const multimap& __x) 250 _M_t = __x._M_t; 263 operator=(multimap&& __x) 267 this->swap(__x); [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
stl_map.h | 117 bool operator()(const value_type& __x, const value_type& __y) const 118 { return comp(__x.first, __y.first); } 172 map(const map& __x) 173 : _M_t(__x._M_t) { } 183 map(map&& __x) 184 : _M_t(std::move(__x._M_t)) { } 253 operator=(const map& __x) 255 _M_t = __x._M_t; 268 operator=(map&& __x) 273 this->swap(__x); [all...] |
stl_multimap.h | 117 bool operator()(const value_type& __x, const value_type& __y) const 118 { return comp(__x.first, __y.first); } 170 multimap(const multimap& __x) 171 : _M_t(__x._M_t) { } 181 multimap(multimap&& __x) 182 : _M_t(std::move(__x._M_t)) { } 250 operator=(const multimap& __x) 252 _M_t = __x._M_t; 265 operator=(multimap&& __x) 270 this->swap(__x); [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_map.h | 119 bool operator()(const value_type& __x, const value_type& __y) const 120 { return comp(__x.first, __y.first); } 169 * @param __x A %map of identical element and allocator types. 172 * used by @a __x. 174 map(const map& __x) 175 : _M_t(__x._M_t) { } 180 * @param __x A %map of identical element and allocator types. 182 * The newly-created %map contains the exact contents of @a __x. 183 * The contents of @a __x are a valid, but unspecified %map. 185 map(map&& __x) [all...] |
stl_multimap.h | 119 bool operator()(const value_type& __x, const value_type& __y) const 120 { return comp(__x.first, __y.first); } 167 * @param __x A %multimap of identical element and allocator types. 170 * used by @a __x. 172 multimap(const multimap& __x) 173 : _M_t(__x._M_t) { } 178 * @param __x A %multimap of identical element and allocator types. 180 * The newly-created %multimap contains the exact contents of @a __x. 181 * The contents of @a __x are a valid, but unspecified %multimap. 183 multimap(multimap&& __x) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
stl_map.h | 117 bool operator()(const value_type& __x, const value_type& __y) const 118 { return comp(__x.first, __y.first); } 172 map(const map& __x) 173 : _M_t(__x._M_t) { } 183 map(map&& __x) 184 : _M_t(std::move(__x._M_t)) { } 253 operator=(const map& __x) 255 _M_t = __x._M_t; 268 operator=(map&& __x) 273 this->swap(__x); [all...] |
stl_multimap.h | 117 bool operator()(const value_type& __x, const value_type& __y) const 118 { return comp(__x.first, __y.first); } 170 multimap(const multimap& __x) 171 : _M_t(__x._M_t) { } 181 multimap(multimap&& __x) 182 : _M_t(std::move(__x._M_t)) { } 250 operator=(const multimap& __x) 252 _M_t = __x._M_t; 265 operator=(multimap&& __x) 270 this->swap(__x); [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_map.h | 119 bool operator()(const value_type& __x, const value_type& __y) const 120 { return comp(__x.first, __y.first); } 169 * @param __x A %map of identical element and allocator types. 172 * used by @a __x. 174 map(const map& __x) 175 : _M_t(__x._M_t) { } 180 * @param __x A %map of identical element and allocator types. 182 * The newly-created %map contains the exact contents of @a __x. 183 * The contents of @a __x are a valid, but unspecified %map. 185 map(map&& __x) [all...] |
stl_multimap.h | 119 bool operator()(const value_type& __x, const value_type& __y) const 120 { return comp(__x.first, __y.first); } 167 * @param __x A %multimap of identical element and allocator types. 170 * used by @a __x. 172 multimap(const multimap& __x) 173 : _M_t(__x._M_t) { } 178 * @param __x A %multimap of identical element and allocator types. 180 * The newly-created %multimap contains the exact contents of @a __x. 181 * The contents of @a __x are a valid, but unspecified %multimap. 183 multimap(multimap&& __x) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
stl_multimap.h | 124 bool operator()(const value_type& __x, const value_type& __y) const 125 { return comp(__x.first, __y.first); } 172 * @param __x A %multimap of identical element and allocator types. 175 * used by @a __x. 177 multimap(const multimap& __x) 178 : _M_t(__x._M_t) { } 183 * @param __x A %multimap of identical element and allocator types. 185 * The newly-created %multimap contains the exact contents of @a __x. 186 * The contents of @a __x are a valid, but unspecified %multimap. 188 multimap(multimap&& __x) [all...] |