Searched defs:hb_map_t (Results 1 – 2 of 2) sorted by relevance
434 struct hb_map_t : hb_hashmap_t<hb_codepoint_t, struct442 ~hb_map_t () = default; argument443 hb_map_t () : hashmap () {} in hb_map_t() argument444 hb_map_t (const hb_map_t &o) : hashmap ((hashmap &) o) {} in hb_map_t() function445 hb_map_t (hb_map_t &&o) : hashmap (std::move ((hashmap &) o)) {} in hb_map_t() function448 hb_map_t (std::initializer_list<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> lst) : hashmap (lst) {} in hb_map_t() function451 hb_map_t (const Iterable &o) : hashmap (o) {} in hb_map_t() argument
54 typedef struct hb_map_t hb_map_t; typedef