Searched refs:_M_ht (Results 1 - 4 of 4) sorted by relevance

/external/stlport/stlport/stl/
H A D_unordered_map.h74 hasher hash_function() const { return _M_ht.hash_funct(); }
75 key_equal key_eq() const { return _M_ht.key_eq(); }
76 allocator_type get_allocator() const { return _M_ht.get_allocator(); }
79 _Ht _M_ht; member in class:unordered_map
86 : _M_ht(__n, __hf, __eql, __a) {}
90 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
99 : _M_ht(__n, __hf, __eql, __a)
100 { _M_ht.insert_unique(__f, __l); }
106 : _M_ht(__
247 _Ht _M_ht; member in class:unordered_multimap
[all...]
H A D_unordered_set.h68 hasher hash_function() const { return _M_ht.hash_funct(); }
69 key_equal key_eq() const { return _M_ht.key_eq(); }
70 allocator_type get_allocator() const { return _M_ht.get_allocator(); }
73 _Ht _M_ht; member in class:unordered_set
80 : _M_ht(__n, __hf, __eql, __a) {}
84 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
93 : _M_ht(__n, __hf, __eql, __a)
94 { _M_ht.insert_unique(__f, __l); }
100 : _M_ht(__
223 _Ht _M_ht; member in class:unordered_multiset
[all...]
H A D_hash_map.h80 hasher hash_funct() const { return _M_ht.hash_funct(); }
81 key_equal key_eq() const { return _M_ht.key_eq(); }
82 allocator_type get_allocator() const { return _M_ht.get_allocator(); }
85 _Ht _M_ht; member in class:hash_map
88 hash_map() : _M_ht(0, hasher(), key_equal(), allocator_type()) {}
90 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
92 : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
95 : _M_ht(__n, __hf, __eql, __a) {}
99 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {
276 _Ht _M_ht; member in class:hash_multimap
[all...]
H A D_hash_set.h74 hasher hash_funct() const { return _M_ht.hash_funct(); }
75 key_equal key_eq() const { return _M_ht.key_eq(); }
76 allocator_type get_allocator() const { return _M_ht.get_allocator(); }
79 _Ht _M_ht; member in class:hash_set
84 : _M_ht(0, hasher(), key_equal(), allocator_type()) {}
86 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
88 : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
94 : _M_ht(__n, __hf, __eql, allocator_type()) {}
98 : _M_ht(__n, __hf, __eql, __a) {}
102 : _M_ht(__move_sourc
265 _Ht _M_ht; member in class:hash_multiset
[all...]

Completed in 130 milliseconds