Searched defs:hb_hashmap_t (Results 1 – 1 of 1) sorted by relevance
41 struct hb_hashmap_t struct43 hb_hashmap_t () { init (); } in hb_hashmap_t() function44 ~hb_hashmap_t () { fini (); } in ~hb_hashmap_t() argument46 …hb_hashmap_t (const hb_hashmap_t& o) : hb_hashmap_t () { resize (o.population); hb_copy (o, *this)… in hb_hashmap_t() argument47 hb_hashmap_t (hb_hashmap_t&& o) : hb_hashmap_t () { hb_swap (*this, o); } in hb_hashmap_t() function48 …hb_hashmap_t& operator= (const hb_hashmap_t& o) { reset (); resize (o.population); hb_copy (o, *t… in operator =() argument49 hb_hashmap_t& operator= (hb_hashmap_t&& o) { hb_swap (*this, o); return *this; } in operator =() argument51 hb_hashmap_t (std::initializer_list<hb_pair_t<K, V>> lst) : hb_hashmap_t () in hb_hashmap_t() function58 hb_hashmap_t (const Iterable &o) : hb_hashmap_t () in hb_hashmap_t() argument66 struct item_t[all …]