Searched refs:hb_sorted_array_t (Results 1 – 14 of 14) sorted by relevance
/aosp_15_r20/external/harfbuzz_ng/src/ |
H A D | hb-array.hh | 37 struct hb_sorted_array_t; 222 hb_sorted_array_t<Type> qsort (int (*cmp_)(const void*, const void*)) in qsort() 227 return hb_sorted_array_t<Type> (*this); in qsort() 229 hb_sorted_array_t<Type> qsort () in qsort() 234 return hb_sorted_array_t<Type> (*this); in qsort() 346 struct hb_sorted_array_t : struct 348 hb_iter_t<hb_sorted_array_t<Type>, Type&> 350 typedef hb_iter_t<hb_sorted_array_t, Type&> iter_base_t; argument 356 hb_sorted_array_t () = default; argument 357 hb_sorted_array_t (const hb_sorted_array_t&) = default; [all …]
|
H A D | test-iter.cc | 216 hb_sorted_array_t<int> sa; in main() 217 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>, hb_sorted_array_t<int>::item_t>&> (sa); in main() 218 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>, hb_sorted_array_t<int>::__item_t__>&> (sa); in main() 219 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>, int&>&>(sa); in main() 220 (void) static_cast<hb_iter_t<hb_sorted_array_t<int>>&>(sa); in main() 225 test_iterable<hb_sorted_array_t<const int>> (); in main()
|
H A D | hb-vector.hh | 44 …using array_t = typename std::conditional<sorted, hb_sorted_array_t<Type>, hb_array_t<Type>>::type; 45 …using c_array_t = typename std::conditional<sorted, hb_sorted_array_t<const Type>, hb_array_t<cons… 196 hb_sorted_array_t<Type> as_sorted_array () in as_sorted_array() 198 hb_sorted_array_t<const Type> as_sorted_array () const in as_sorted_array()
|
H A D | hb-open-type.hh | 682 hb_sorted_array_t<Type> as_array (unsigned int len) in as_array() 684 hb_sorted_array_t<const Type> as_array (unsigned int len) const in as_array() 686 operator hb_sorted_array_t<Type> () { return as_array (); } in operator hb_sorted_array_t<Type>() 687 operator hb_sorted_array_t<const Type> () const { return as_array (); } in operator hb_sorted_array_t<const Type>() 1043 …hb_sorted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->len)… in as_array() 1044 …hb_sorted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->len)… in as_array() 1047 typedef hb_sorted_array_t<const Type> iter_t; 1048 typedef hb_sorted_array_t< Type> writer_t;
|
H A D | hb-set-digest.hh | 126 …bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr… in add_sorted_array() 186 …bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr… in add_sorted_array()
|
H A D | hb-iter.hh | 154 template <typename> struct hb_sorted_array_t; 863 template <typename Type> inline hb_sorted_array_t<Type> 864 operator () (hb_sorted_array_t<Type> array, unsigned count) const in operator ()()
|
H A D | hb-set.hh | 103 …bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr… in add_sorted_array()
|
H A D | hb-bit-set.hh | 269 …bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr… in add_sorted_array() 275 …bool del_sorted_array (const hb_sorted_array_t<const T>& arr) { return del_sorted_array (&arr, arr… in del_sorted_array()
|
H A D | hb-bit-set-invertible.hh | 122 …bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr… in add_sorted_array()
|
/aosp_15_r20/external/harfbuzz_ng/src/OT/Layout/GSUB/ |
H A D | SubstLookup.hh | 142 hb_sorted_array_t<const HBGlyphID16> glyphs, in serialize_alternate() 164 hb_sorted_array_t<const HBGlyphID16> first_glyphs, in serialize_ligature()
|
H A D | AlternateSubst.hh | 40 hb_sorted_array_t<const HBGlyphID16> glyphs, in serialize()
|
H A D | LigatureSubst.hh | 41 hb_sorted_array_t<const HBGlyphID16> first_glyphs, in serialize()
|
H A D | AlternateSubstFormat1.hh | 83 hb_sorted_array_t<const HBGlyphID16> glyphs, in serialize()
|
H A D | LigatureSubstFormat1.hh | 93 hb_sorted_array_t<const HBGlyphID16> first_glyphs, in serialize()
|