Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-array.hh48 struct hb_array_t : hb_iter_with_fallback_t<hb_array_t<Type>, Type&> struct
59 constexpr hb_array_t (Type *array_, unsigned int length_) : arrayZ (array_), length (length_) {} in hb_array_t() argument
61 constexpr hb_array_t (Type (&array_)[length_]) : hb_array_t (array_, length_) {} in hb_array_t() argument
65 constexpr hb_array_t (const hb_array_t<U> &o) : in hb_array_t() argument
70 hb_array_t& operator = (const hb_array_t<U> &o) in operator =() argument
76 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. */ argument
107 bool operator != (const hb_array_t& o) const in operator !=() argument
[all …]