Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-map.hh525 struct hb_map_t : hb_hashmap_t<hb_codepoint_t, struct
533 ~hb_map_t () = default; argument
534 hb_map_t () : hashmap () {} in hb_map_t() argument
535 hb_map_t (const hb_map_t &o) : hashmap ((hashmap &) o) {} in hb_map_t() function
536 hb_map_t (hb_map_t &&o) : hashmap (std::move ((hashmap &) o)) {} in hb_map_t() argument
539 hb_map_t (std::initializer_list<hb_codepoint_pair_t> lst) : hashmap (lst) {} in hb_map_t() argument
542 hb_map_t (const Iterable &o) : hashmap (o) {} in hb_map_t() argument
Dhb-map.h55 typedef struct hb_map_t hb_map_t; typedef