Home
last modified time | relevance | path

Searched defs:hb_hashmap_t (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-map.hh41 struct hb_hashmap_t struct
43 hb_hashmap_t () { init (); } in hb_hashmap_t() function
44 ~hb_hashmap_t () { fini (); } in ~hb_hashmap_t() argument
46hb_hashmap_t (const hb_hashmap_t& o) : hb_hashmap_t () { resize (o.population); hb_copy (o, *this)… in hb_hashmap_t() argument
47 hb_hashmap_t (hb_hashmap_t&& o) : hb_hashmap_t () { hb_swap (*this, o); } in hb_hashmap_t() function
48hb_hashmap_t& operator= (const hb_hashmap_t& o) { reset (); resize (o.population); hb_copy (o, *t… in operator =() argument
49 hb_hashmap_t& operator= (hb_hashmap_t&& o) { hb_swap (*this, o); return *this; } in operator =() argument
51 hb_hashmap_t (std::initializer_list<hb_pair_t<K, V>> lst) : hb_hashmap_t () in hb_hashmap_t() function
58 hb_hashmap_t (const Iterable &o) : hb_hashmap_t () in hb_hashmap_t() argument
66 struct item_t
[all …]