Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/OT/Layout/Common/
DCoverage.hh221 struct iter_t : hb_iter_with_fallback_t<iter_t, hb_codepoint_t> struct
223 static constexpr bool is_sorted_iterator = true;
224 iter_t (const Coverage &c_ = Null (Coverage)) in iter_t() function
239 bool __more__ () const in __more__()
252 void __next__ () in __next__()
265 typedef hb_codepoint_t __item_t__;
266 __item_t__ __item__ () const { return get_glyph (); } in __item__()
268 hb_codepoint_t get_glyph () const in get_glyph()
281 bool operator != (const iter_t& o) const in operator !=()
295 iter_t __end__ () const in __end__()
[all …]
DCoverageFormat2.hh164 struct iter_t struct
166 void init (const CoverageFormat2_4 &c_) in init()
179 bool __more__ () const { return i < c->rangeRecord.len; } in __more__()
180 void __next__ () in __next__()
208 hb_codepoint_t get_glyph () const { return j; } in get_glyph()
209 bool operator != (const iter_t& o) const in operator !=()
211 iter_t __end__ () const in __end__()
221 const struct CoverageFormat2_4 *c;
222 unsigned int i, coverage;
223 hb_codepoint_t j;
DCoverageFormat1.hh112 struct iter_t struct
114 void init (const struct CoverageFormat1_3 &c_) { c = &c_; i = 0; } in init()
115 bool __more__ () const { return i < c->glyphArray.len; } in __more__()
116 void __next__ () { i++; } in __next__()
117 hb_codepoint_t get_glyph () const { return c->glyphArray[i]; } in get_glyph()
118 bool operator != (const iter_t& o) const in operator !=()
120 iter_t __end__ () const { iter_t it; it.init (*c); it.i = c->glyphArray.len; return it; } in __end__()
123 const struct CoverageFormat1_3 *c;
124 unsigned int i;
/external/harfbuzz_ng/src/
Dhb-bit-set-invertible.hh340 struct iter_t : hb_iter_with_fallback_t<iter_t, hb_codepoint_t> struct
342 static constexpr bool is_sorted_iterator = true;
343 iter_t (const hb_bit_set_invertible_t &s_ = Null (hb_bit_set_invertible_t), in iter_t() argument
353 typedef hb_codepoint_t __item_t__;
354 hb_codepoint_t __item__ () const { return v; } in __item__()
355 bool __more__ () const { return v != INVALID; } in __more__()
356 void __next__ () { s->next (&v); if (l) l--; } in __next__()
357 void __prev__ () { s->previous (&v); } in __prev__()
358 unsigned __len__ () const { return l; } in __len__()
359 iter_t end () const { return iter_t (*s, false); } in end()
[all …]
Dhb-bit-set.hh859 struct iter_t : hb_iter_with_fallback_t<iter_t, hb_codepoint_t> struct
861 static constexpr bool is_sorted_iterator = true;
862 iter_t (const hb_bit_set_t &s_ = Null (hb_bit_set_t), in iter_t() argument
872 typedef hb_codepoint_t __item_t__;
873 hb_codepoint_t __item__ () const { return v; } in __item__()
874 bool __more__ () const { return v != INVALID; } in __more__()
875 void __next__ () { s->next (&v); if (l) l--; } in __next__()
876 void __prev__ () { s->previous (&v); } in __prev__()
877 unsigned __len__ () const { return l; } in __len__()
878 iter_t end () const { return iter_t (*s, false); } in end()
[all …]
Dtest-iter.cc56 typedef array_iter_t<T> iter_t; typedef
Dhb-set.hh154 using iter_t = typename impl_t::iter_t; typedef
Dhb-open-type.hh651 typedef hb_array_t<const Type> iter_t; typedef
828 typedef hb_array_t<const Type> iter_t; typedef
948 typedef hb_sorted_array_t<const Type> iter_t; typedef
Dhb-vector.hh168 typedef c_array_t iter_t; typedef
/external/libwebm/
Dsample_muxer_metadata.cc45 typedef cue_list_t::const_iterator iter_t; in AddChapters() typedef
60 typedef cues_set_t::iterator iter_t; in Write() typedef
180 typedef libwebvtt::Cue::payload_t::const_iterator iter_t; in AddChapter() typedef
325 typedef cue_t::settings_t::const_iterator iter_t; in WriteCueSettings() typedef
348 typedef cue_t::payload_t::const_iterator iter_t; in WriteCuePayload() typedef
Ddumpvtt.cc59 typedef libwebvtt::Cue::settings_t::const_iterator iter_t; in main() typedef
75 typedef libwebvtt::Cue::payload_t::const_iterator iter_t; in main() typedef
Dvttdemux.cc415 typedef metadata_map_t::iterator iter_t; in OpenFiles() typedef
514 typedef metadata_map_t::iterator iter_t; in CloseFiles() typedef
559 typedef metadata_map_t::const_iterator iter_t; in InitializeFiles() typedef
778 typedef metadata_map_t::const_iterator iter_t; in ProcessBlockEntry() typedef
Dmkvmuxer_sample.cc107 typedef metadata_files_t::const_iterator iter_t; in LoadMetadataFiles() typedef
/external/cronet/net/base/
Daddress_list.cc111 using iter_t = std::vector<std::string>::iterator; in AppendDnsAliases() typedef