Searched defs:hb_map_t (Results 1 – 2 of 2) sorted by relevance
525 struct hb_map_t : hb_hashmap_t<hb_codepoint_t, struct533 ~hb_map_t () = default; argument534 hb_map_t () : hashmap () {} in hb_map_t() argument535 hb_map_t (const hb_map_t &o) : hashmap ((hashmap &) o) {} in hb_map_t() function536 hb_map_t (hb_map_t &&o) : hashmap (std::move ((hashmap &) o)) {} in hb_map_t() argument539 hb_map_t (std::initializer_list<hb_codepoint_pair_t> lst) : hashmap (lst) {} in hb_map_t() argument542 hb_map_t (const Iterable &o) : hashmap (o) {} in hb_map_t() argument
55 typedef struct hb_map_t hb_map_t; typedef