Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-vector.hh312 struct hb_sorted_vector_t : hb_vector_t<Type> struct
318 hb_sorted_vector_t (std::initializer_list<Type> lst) : hb_vector_t<Type> (lst) {} in hb_sorted_vector_t() argument
321 hb_sorted_vector_t (const Iterable &o) : hb_vector_t<Type> (o) {} in hb_sorted_vector_t() argument
327 …rted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->length); } in as_array()
328 …rted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->length); } in as_array()
331 typedef hb_sorted_array_t<const Type> const_iter_t;
332 typedef hb_sorted_array_t< Type> iter_t;
333 const_iter_t iter () const { return as_array (); } in iter()
334 const_iter_t citer () const { return as_array (); } in citer()
335 iter_t iter () { return as_array (); } in iter()
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-vector.hh283 struct hb_sorted_vector_t : hb_vector_t<Type> struct
285 …rted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->length); } in as_array()
286 …rted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->length); } in as_array()
289 typedef hb_sorted_array_t<const Type> const_iter_t;
290 typedef hb_sorted_array_t< Type> iter_t;
291 const_iter_t iter () const { return as_array (); } in iter()
292 const_iter_t citer () const { return as_array (); } in citer()
293 iter_t iter () { return as_array (); } in iter()
294 operator iter_t () { return iter (); } in operator iter_t()
295 operator const_iter_t () const { return iter (); } in operator const_iter_t()
[all …]
/third_party/harfbuzz/src/
Dhb-vector.hh296 struct hb_sorted_vector_t : hb_vector_t<Type> struct
298 …rted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->length); } in as_array()
299 …rted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->length); } in as_array()
302 typedef hb_sorted_array_t<const Type> const_iter_t;
303 typedef hb_sorted_array_t< Type> iter_t;
304 const_iter_t iter () const { return as_array (); } in iter()
305 const_iter_t citer () const { return as_array (); } in citer()
306 iter_t iter () { return as_array (); } in iter()
307 operator iter_t () { return iter (); } in operator iter_t()
308 operator const_iter_t () const { return iter (); } in operator const_iter_t()
[all …]