Home | History | Annotate | Download | only in fst

Lines Matching defs:Impl

228   StateMapFstImpl(const StateMapFstImpl<A, B, C> &impl)
229 : CacheImpl<B>(impl),
230 fst_(impl.fst_->Copy(true)),
231 mapper_(new C(*impl.mapper_, fst_)),
283 // Set error if found; return FST impl properties.
335 typedef StateMapFstImpl<A, B, C> Impl;
339 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
342 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
345 : ImplToFst<Impl>(new Impl(fst, mapper, StateMapFstOptions())) {}
348 : ImplToFst<Impl>(new Impl(fst, mapper, StateMapFstOptions())) {}
352 : ImplToFst<Impl>(fst, safe) {}
369 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }