Searched defs:hb_set_t (Results 1 – 2 of 2) sorted by relevance
159 struct hb_set_t : hb_sparseset_t<hb_bit_set_invertible_t> struct163 ~hb_set_t () = default; argument164 hb_set_t () : sparseset () {}; in hb_set_t() argument165 hb_set_t (const hb_set_t &o) : sparseset ((sparseset &) o) {}; in hb_set_t() function166 hb_set_t (hb_set_t&& o) : sparseset (std::move ((sparseset &) o)) {} in hb_set_t() function169 hb_set_t (std::initializer_list<hb_codepoint_t> lst) : sparseset (lst) {} in hb_set_t() argument172 hb_set_t (const Iterable &o) : sparseset (o) {} in hb_set_t() function
57 typedef struct hb_set_t hb_set_t; typedef