Searched defs:hb_bimap_t (Results 1 – 1 of 1) sorted by relevance
34 struct hb_bimap_t struct36 void reset () in reset()42 void alloc (unsigned pop) in alloc()48 bool in_error () const { return forw_map.in_error () || back_map.in_error (); } in in_error()50 void set (hb_codepoint_t lhs, hb_codepoint_t rhs) in set()63 hb_codepoint_t get (hb_codepoint_t lhs) const { return forw_map.get (lhs); } in get()64 hb_codepoint_t backward (hb_codepoint_t rhs) const { return back_map.get (rhs); } in backward()66 hb_codepoint_t operator [] (hb_codepoint_t lhs) const { return get (lhs); } in operator []()67 bool has (hb_codepoint_t lhs) const { return forw_map.has (lhs); } in has()70 void del (hb_codepoint_t lhs) in del()[all …]