Home | History | Annotate | Download | only in fst

Lines Matching defs:arc

42 // Arc definition. The unsigned type U is used to represent indices into
43 // the arc array.
53 typedef A Arc;
100 // Provide information needed for the generic arc iterator
190 const A &arc = aiter.Value();
192 if (arc.ilabel == 0)
194 if (arc.olabel == 0)
196 arcs_[pos++] = arc;
255 // represent indices into the arc array (uint32 by default, declared
264 typedef A Arc;
306 virtual void InitStateIterator(StateIteratorData<Arc> *data) const {
310 virtual void InitArcIterator(StateId s, ArcIteratorData<Arc> *data) const {
402 const A &arc = aiter.Value();
403 strm.write(reinterpret_cast<const char *>(&arc), sizeof(arc));