Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-open-type.hh860 struct SortedArrayOf : ArrayOf<Type, LenType> struct
862 …_sorted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->len); } in as_array()
863 …_sorted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->len); } in as_array()
866 typedef hb_sorted_array_t<const Type> iter_t;
867 typedef hb_sorted_array_t< Type> writer_t;
868 iter_t iter () const { return as_array (); } in iter()
869 writer_t writer () { return as_array (); } in writer()
870 operator iter_t () const { return iter (); } in operator iter_t()
871 operator writer_t () { return writer (); } in operator writer_t()
873 hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array()
[all …]