Home
last modified time | relevance | path

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

/external/openfst/src/include/fst/
Dvector-fst.h35 template <class A> class VectorFst; variable
423 VectorFst() : ImplToMutableFst<Impl>(new Impl) {} in VectorFst() function
425 explicit VectorFst(const Fst<A> &fst) in VectorFst() function
428 VectorFst(const VectorFst<A> &fst) : ImplToMutableFst<Impl>(fst) {} in VectorFst() function
492 explicit VectorFst(Impl *impl) : ImplToMutableFst<Impl>(impl) {} in VectorFst() function
Dfst-decl.h52 template <class A> class VectorFst; variable
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dvector-fst.h31 template <class A> class VectorFst; variable
465 VectorFst() : impl_(new VectorFstImpl<A>) {} in VectorFst() function
467 VectorFst(const VectorFst<A> &fst) : MutableFst<A>(fst), impl_(fst.impl_) { in VectorFst() function
470 explicit VectorFst(const Fst<A> &fst) : impl_(new VectorFstImpl<A>(fst)) {} in VectorFst() function
652 explicit VectorFst(VectorFstImpl<A> *impl) : impl_(impl) {} in VectorFst() function
Dfst-decl.h37 template <class A> class VectorFst; variable