Searched refs:__ht (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _hashtable.h | 332 hashtable(const _Self& __ht) 333 : _M_hash(__ht._M_hash), 334 _M_equals(__ht._M_equals), 335 _M_elems(__ht.get_allocator()), 336 _M_buckets(_STLP_CONVERT_ALLOCATOR(__ht.get_allocator(), _BucketType*)), 339 { _M_copy_from(__ht); } 351 _Self& operator= (const _Self& __ht) { 352 if (&__ht != this) { 354 _M_hash = __ht._M_hash; 355 _M_equals = __ht._M_equals; [all …]
|
D | _hashtable.c | 510 ::_M_copy_from(const hashtable<_Val,_Key,_HF,_Traits,_ExK,_EqK,_All>& __ht) { in _M_copy_from() argument 512 _M_elems.insert(_M_elems.end(), __ht._M_elems.begin(), __ht._M_elems.end()); in _M_copy_from() 513 _M_buckets.resize(__ht._M_buckets.size()); in _M_copy_from() 514 _ElemsConstIte __src(__ht._M_elems.begin()), __src_end(__ht._M_elems.end()); in _M_copy_from() 516 typename _BucketVector::const_iterator __src_b(__ht._M_buckets.begin()), in _M_copy_from() 517 __src_end_b(__ht._M_buckets.end()); in _M_copy_from() 529 _M_num_elements = __ht._M_num_elements; in _M_copy_from() 530 _M_max_load_factor = __ht._M_max_load_factor; in _M_copy_from()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _hashtable.h | 149 hashtable(const _Self& __ht) in hashtable() argument 150 : _M_non_dbg_impl(__ht._M_non_dbg_impl), in hashtable() 169 _Self& operator=(const _Self& __ht) { 170 if (this != &__ht) { 173 _M_non_dbg_impl = __ht._M_non_dbg_impl; 178 void swap(_Self& __ht) { in swap() argument 179 _M_iter_list._Swap_owners(__ht._M_iter_list); in swap() 180 _M_non_dbg_impl.swap(__ht._M_non_dbg_impl); in swap()
|