Searched defs:ConstFst (Results 1 – 4 of 4) sorted by relevance
28 template <class A> class ConstFst; variable233 ConstFst() : impl_(new ConstFstImpl<A>()) {} in ConstFst() function235 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) { in ConstFst() function239 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} in ConstFst() function329 ConstFst(ConstFstImpl<A> *impl) : impl_(impl) {} in ConstFst() function
33 template <class A> class ConstFst; variable
38 template <class A, class U> class ConstFst; variable269 ConstFst() : ImplToExpandedFst<Impl>(new Impl()) {} in ConstFst() function271 explicit ConstFst(const Fst<A> &fst) in ConstFst() function274 ConstFst(const ConstFst<A, U> &fst) : ImplToExpandedFst<Impl>(fst) {} in ConstFst() function315 explicit ConstFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {} in ConstFst() function
47 template <class A, class U = uint32> class ConstFst; variable