Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-map.hh42 struct hb_hashmap_t struct
47 hb_hashmap_t () { init (); } in hb_hashmap_t() function
48 ~hb_hashmap_t () { fini (); } in ~hb_hashmap_t() argument
50 hb_hashmap_t (const hb_hashmap_t& o) : hb_hashmap_t () { hb_copy (o, *this); } in hb_hashmap_t() function
51 hb_hashmap_t (hb_hashmap_t&& o) : hb_hashmap_t () { hb_swap (*this, o); } in hb_hashmap_t() function
52 hb_hashmap_t& operator= (const hb_hashmap_t& o) { hb_copy (o, *this); return *this; } in operator =() argument
53 hb_hashmap_t& operator= (hb_hashmap_t&& o) { hb_swap (*this, o); return *this; } in operator =() argument
55 hb_hashmap_t (std::initializer_list<hb_pair_t<K, V>> lst) : hb_hashmap_t () in hb_hashmap_t() function
62 hb_hashmap_t (const Iterable &o) : hb_hashmap_t () in hb_hashmap_t() argument
72 struct item_t
[all …]