Home
last modified time | relevance | path

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

/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-array.hh48 struct hb_array_t : hb_iter_with_fallback_t<hb_array_t<Type>, Type&> struct
55 hb_array_t () = default; argument
61 constexpr hb_array_t (Type *array_, unsigned int length_) : arrayZ (array_), length (length_) {} in hb_array_t() function
63 constexpr hb_array_t (Type (&array_)[length_]) : hb_array_t (array_, length_) {} in hb_array_t() argument
67 constexpr hb_array_t (const hb_array_t<U> &o) : in hb_array_t() argument
72 hb_array_t& operator = (const hb_array_t<U> &o) in operator =() argument
78 typedef Type& __item_t__;
79 static constexpr bool is_random_access_iterator = true;
80 static constexpr bool has_fast_len = true;
81 Type& __item__ () const in __item__()
[all …]