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 (Type *array_, unsigned int length_) : arrayZ (array_), length (length_) {} in hb_array_t() argument61 constexpr hb_array_t (Type (&array_)[length_]) : hb_array_t (array_, length_) {} in hb_array_t() argument65 constexpr hb_array_t (const hb_array_t<U> &o) : in hb_array_t() argument70 hb_array_t& operator = (const hb_array_t<U> &o) in operator =() argument76 typedef Type& __item_t__;77 static constexpr bool is_random_access_iterator = true;78 Type& __item_at__ (unsigned i) const in __item_at__()106 * objects that were using hb_array_t for range-based loop before. */ argument107 bool operator != (const hb_array_t& o) const in operator !=() argument[all …]