Home
last modified time | relevance | path

Searched defs:ConstFst (Results 1 – 4 of 4) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dconst-fst.h28 template <class A> class ConstFst; variable
233 ConstFst() : impl_(new ConstFstImpl<A>()) {} in ConstFst() function
235 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) { in ConstFst() function
239 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} in ConstFst() function
329 ConstFst(ConstFstImpl<A> *impl) : impl_(impl) {} in ConstFst() function
Dfst-decl.h33 template <class A> class ConstFst; variable
/external/openfst/src/include/fst/
Dconst-fst.h38 template <class A, class U> class ConstFst; variable
269 ConstFst() : ImplToExpandedFst<Impl>(new Impl()) {} in ConstFst() function
271 explicit ConstFst(const Fst<A> &fst) in ConstFst() function
274 ConstFst(const ConstFst<A, U> &fst) : ImplToExpandedFst<Impl>(fst) {} in ConstFst() function
315 explicit ConstFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {} in ConstFst() function
Dfst-decl.h47 template <class A, class U = uint32> class ConstFst; variable