Home
last modified time | relevance | path

Searched refs:hb_sorted_array_t (Results 1 – 6 of 6) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-array.hh37 struct hb_sorted_array_t;
148 hb_sorted_array_t<Type> qsort (int (*cmp_)(const void*, const void*)) in qsort()
152 return hb_sorted_array_t<Type> (*this); in qsort()
154 hb_sorted_array_t<Type> qsort () in qsort()
158 return hb_sorted_array_t<Type> (*this); in qsort()
251 struct hb_sorted_array_t : struct
252 hb_iter_t<hb_sorted_array_t<Type>, Type&>,
255 typedef hb_iter_t<hb_sorted_array_t, Type&> iter_base_t; argument
260 hb_sorted_array_t () : hb_array_t<Type> () {} in hb_sorted_array_t() function
261 hb_sorted_array_t (Type *array_, unsigned int length_) : hb_array_t<Type> (array_, length_) {} in hb_sorted_array_t() function
[all …]
Dtest-iter.cc145 hb_sorted_array_t<int> sa; in main()
146 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>, hb_sorted_array_t<int>::item_t>&> (sa); in main()
147 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>, hb_sorted_array_t<int>::__item_t__>&> (sa); in main()
148 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>, int&>&>(sa); in main()
149 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>>&>(sa); in main()
154 test_iterable<hb_sorted_array_t<const int>> (); in main()
Dhb-vector.hh154 hb_sorted_array_t<Type> as_sorted_array () in as_sorted_array()
156 hb_sorted_array_t<const Type> as_sorted_array () const in as_sorted_array()
285hb_sorted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->leng… in as_array()
286hb_sorted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->leng… in as_array()
289 typedef hb_sorted_array_t<const Type> const_iter_t;
290 typedef hb_sorted_array_t< Type> iter_t;
Dhb-open-type.hh527 hb_sorted_array_t<Type> as_array (unsigned int len) in as_array()
529 hb_sorted_array_t<const Type> as_array (unsigned int len) const in as_array()
531 operator hb_sorted_array_t<Type> () { return as_array (); } in operator hb_sorted_array_t<Type>()
532 operator hb_sorted_array_t<const Type> () const { return as_array (); } in operator hb_sorted_array_t<const Type>()
862hb_sorted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->len)… in as_array()
863hb_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;
873 hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array()
875hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr … in sub_array()
[all …]
Dhb-ot-layout-gsub-table.hh424 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize()
486 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize()
634 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize()
696 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize()
1003 hb_sorted_array_t<const HBGlyphID> first_glyphs, in serialize()
1070 hb_sorted_array_t<const HBGlyphID> first_glyphs, in serialize()
1405 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize_single()
1416 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize_multiple()
1431 hb_sorted_array_t<const HBGlyphID> glyphs, in serialize_alternate()
1446 hb_sorted_array_t<const HBGlyphID> first_glyphs, in serialize_ligature()
Dhb-iter.hh159 template <typename> struct hb_sorted_array_t;
765 template <typename Type> inline hb_sorted_array_t<Type>
766 operator () (hb_sorted_array_t<Type> array, unsigned count) const in operator ()()