HomeSort by relevance Sort by last modified time
    Searched refs:ImplToExpandedFst (Results 1 - 8 of 8) sorted by null

  /external/openfst/src/include/fst/
expanded-fst.h 125 class ImplToExpandedFst : public ImplToFst<I, F> {
136 ImplToExpandedFst() : ImplToFst<I, F>() {}
138 ImplToExpandedFst(I *impl) : ImplToFst<I, F>(impl) {}
140 ImplToExpandedFst(const ImplToExpandedFst<I, F> &fst)
143 ImplToExpandedFst(const ImplToExpandedFst<I, F> &fst, bool safe)
163 ImplToExpandedFst<I, F> &operator=(const ImplToExpandedFst<I, F> &fst);
165 ImplToExpandedFst<I, F> &operator=(const Fst<Arc> &fst)
    [all...]
matcher-fst.h 79 : public ImplToExpandedFst<
94 MatcherFst() : ImplToExpandedFst<Impl>(new Impl(F(), N)) {}
97 : ImplToExpandedFst<Impl>(CreateImpl(fst, N)) {}
100 : ImplToExpandedFst<Impl>(CreateImpl(fst, N)) {}
104 : ImplToExpandedFst<Impl>(fst, safe) {}
121 Impl *impl = ImplToExpandedFst<Impl>::Read(filename);
174 explicit MatcherFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {}
mutable-fst.h 250 class ImplToMutableFst : public ImplToExpandedFst<I, F> {
347 ImplToMutableFst() : ImplToExpandedFst<I, F>() {}
349 ImplToMutableFst(I *impl) : ImplToExpandedFst<I, F>(impl) {}
353 : ImplToExpandedFst<I, F>(fst) {}
356 : ImplToExpandedFst<I, F>(fst, safe) {}
const-fst.h 254 // methods to ImplToExpandedFst. The unsigned type U is used to
258 class ConstFst : public ImplToExpandedFst< ConstFstImpl<A, U> > {
269 ConstFst() : ImplToExpandedFst<Impl>(new Impl()) {}
272 : ImplToExpandedFst<Impl>(new Impl(fst)) {}
274 ConstFst(const ConstFst<A, U> &fst) : ImplToExpandedFst<Impl>(fst) {}
290 Impl* impl = ImplToExpandedFst<Impl>::Read(filename);
315 explicit ConstFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {}
compact-fst.h 791 // ImplToExpandedFst. The unsigned type U is used to represent indices
795 class CompactFst : public ImplToExpandedFst< CompactFstImpl<A, C, U> > {
807 CompactFst() : ImplToExpandedFst<Impl>(new Impl()) {}
811 : ImplToExpandedFst<Impl>(new Impl(fst, compactor, opts)) {}
815 : ImplToExpandedFst<Impl>(new Impl(fst, compactor, opts)) {}
840 : ImplToExpandedFst<Impl>(new Impl(begin, end, compactor, opts)) {}
845 : ImplToExpandedFst<Impl>(new Impl(begin, end, compactor, opts)) {}
849 : ImplToExpandedFst<Impl>(fst, safe) {}
865 Impl* impl = ImplToExpandedFst<Impl>::Read(filename);
899 CompactFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {
    [all...]
edit-fst.h 742 Impl* impl = ImplToExpandedFst<Impl, MutableFst<A> >::Read(filename);
vector-fst.h 454 Impl* impl = ImplToExpandedFst<Impl, MutableFst<A> >::Read(filename);
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 633 class NGramFst : public ImplToExpandedFst<NGramFstImpl<A> > {
645 : ImplToExpandedFst<Impl>(new Impl(dst, NULL)) {}
648 : ImplToExpandedFst<Impl>(new Impl(fst, order_out)) {}
653 : ImplToExpandedFst<Impl>(fst, false) {}
655 NGramFst() : ImplToExpandedFst<Impl>(new Impl()) {}
658 NGramFst(const char* data, bool owned) : ImplToExpandedFst<Impl>(new Impl()) {
727 explicit NGramFst(Impl* impl) : ImplToExpandedFst<Impl>(impl) {}
731 ImplToExpandedFst<Impl, ExpandedFst<A> >::GetImpl();
735 ImplToExpandedFst<Impl, Fst<A> >::SetImpl(impl, own_impl);

Completed in 191 milliseconds