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.hh583 struct hb_concat_iter_t : struct
586 hb_concat_iter_t () {} in hb_concat_iter_t() function
587 hb_concat_iter_t (A& a, B& b) : a (a), b (b) {} in hb_concat_iter_t() function
588 hb_concat_iter_t (const A& a, const B& b) : a (a), b (b) {} in hb_concat_iter_t() argument
591 typedef typename A::item_t __item_t__;
592 static constexpr bool is_random_access_iterator =
595 static constexpr bool is_sorted_iterator = false;
597 __item_t__ __item__ () const in __item__()
604 __item_t__ __item_at__ (unsigned i) const in __item_at__()
612 bool __more__ () const { return bool (a) || bool (b); } in __more__()
[all …]