Lines Matching refs:StateMapFst
183 template <class A, class B, class C> class StateMapFst; variable
202 friend class StateIterator< StateMapFst<A, B, C> >;
329 class StateMapFst : public ImplToFst< StateMapFstImpl<A, B, C> > {
331 friend class ArcIterator< StateMapFst<A, B, C> >;
339 StateMapFst(const Fst<A> &fst, const C &mapper, in StateMapFst() function
343 StateMapFst(const Fst<A> &fst, C* mapper, const StateMapFstOptions& opts) in StateMapFst() function
346 StateMapFst(const Fst<A> &fst, const C &mapper) in StateMapFst() function
349 StateMapFst(const Fst<A> &fst, C* mapper) in StateMapFst() function
353 StateMapFst(const StateMapFst<A, B, C> &fst, bool safe = false)
357 virtual StateMapFst<A, B, C> *Copy(bool safe = false) const {
358 return new StateMapFst<A, B, C>(*this, safe);
373 void operator=(const StateMapFst<A, B, C> &fst); // disallow
379 class ArcIterator< StateMapFst<A, B, C> >
380 : public CacheArcIterator< StateMapFst<A, B, C> > {
384 ArcIterator(const StateMapFst<A, B, C> &fst, StateId s) in ArcIterator()
385 : CacheArcIterator< StateMapFst<A, B, C> >(fst.GetImpl(), s) { in ArcIterator()