Home | History | Annotate | Download | only in fst

Lines Matching defs:Impl

95   SynchronizeFstImpl(const SynchronizeFstImpl &impl)
96 : CacheImpl<A>(impl),
97 fst_(impl.fst_->Copy(true)) {
99 SetProperties(impl.Properties(), kCopyProperties);
100 SetInputSymbols(impl.InputSymbols());
101 SetOutputSymbols(impl.OutputSymbols());
160 // Set error if found; return FST impl properties.
363 typedef SynchronizeFstImpl<A> Impl;
366 : ImplToFst<Impl>(new Impl(fst, SynchronizeFstOptions())) {}
369 : ImplToFst<Impl>(new Impl(fst, opts)) {}
373 : ImplToFst<Impl>(fst, safe) {}
388 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }