Searched defs:hb_array_t (Results 1 – 1 of 1) sorted by relevance
48 struct hb_array_t : hb_iter_with_fallback_t<hb_array_t<Type>, Type&> struct59 constexpr hb_array_t (std::nullptr_t) : hb_array_t () {} in hb_array_t() function60 constexpr hb_array_t (Type *array_, unsigned int length_) : arrayZ (array_), length (length_) {} in hb_array_t() argument62 constexpr hb_array_t (Type (&array_)[length_]) : hb_array_t (array_, length_) {} in hb_array_t() argument66 constexpr hb_array_t (const hb_array_t<U> &o) : in hb_array_t() function71 hb_array_t& operator = (const hb_array_t<U> &o) in operator =() argument77 typedef Type& __item_t__;78 static constexpr bool is_random_access_iterator = true;79 Type& __item_at__ (unsigned i) const in __item_at__()106 bool operator != (const hb_array_t& o) const in operator !=() argument[all …]