Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-iter.hh600 struct hb_concat_iter_t : struct
603 hb_concat_iter_t () {} in hb_concat_iter_t() argument
604 hb_concat_iter_t (A& a, B& b) : a (a), b (b) {} in hb_concat_iter_t() argument
605 hb_concat_iter_t (const A& a, const B& b) : a (a), b (b) {} in hb_concat_iter_t() argument
608 typedef typename A::item_t __item_t__;
609 static constexpr bool is_random_access_iterator =
612 static constexpr bool is_sorted_iterator = false;
614 __item_t__ __item__ () const in __item__()
621 __item_t__ __item_at__ (unsigned i) const in __item_at__()
629 bool __more__ () const { return bool (a) || bool (b); } in __more__()
[all …]