Home
last modified time | relevance | path

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

/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-map.hh43 struct hb_hashmap_t struct
47 hb_hashmap_t () { init (); } in hb_hashmap_t() argument
48 ~hb_hashmap_t () { fini (); } in ~hb_hashmap_t() argument
50 hb_hashmap_t (const hb_hashmap_t& o) : hb_hashmap_t () in hb_hashmap_t() argument
73 hb_hashmap_t (hb_hashmap_t&& o) noexcept : hb_hashmap_t () { hb_swap (*this, o); } in hb_hashmap_t() function
74hb_hashmap_t& operator= (const hb_hashmap_t& o) { reset (); alloc (o.population); hb_copy (o, *th… in operator =() argument
75 hb_hashmap_t& operator= (hb_hashmap_t&& o) noexcept { hb_swap (*this, o); return *this; } in operator =() argument
77 hb_hashmap_t (std::initializer_list<hb_pair_t<K, V>> lst) : hb_hashmap_t () in hb_hashmap_t() function
84 hb_hashmap_t (const Iterable &o) : hb_hashmap_t () in hb_hashmap_t() argument
92 struct item_t
[all …]