Home | History | Annotate | Download | only in fst

Lines Matching defs:Arc

79       A arc = aiter.Value();
84 input_map.find(arc.ilabel);
87 FSTERROR() << "Input symbol id " << arc.ilabel
92 arc.ilabel = it->second;
96 it = output_map.find(arc.olabel);
99 FSTERROR() << "Output symbol id " << arc.olabel
104 arc.olabel = it->second;
107 aiter.SetValue(arc);
206 typedef A Arc;
333 return FstImpl<Arc>::Properties(mask);
345 A arc = aiter.Value();
350 input_map_.find(arc.ilabel);
351 if (it != input_map_.end()) { arc.ilabel = it->second; }
357 output_map_.find(arc.olabel);
358 if (it != output_map_.end()) { arc.olabel = it->second; }
361 PushArc(s, arc);
381 // \brief Delayed implementation of arc relabeling
391 typedef A Arc;