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

  /external/openfst/src/include/fst/
union.h 132 class UnionFst : public RationalFst<A> {
140 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2) {
144 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2, const UnionFstOptions &opts)
150 UnionFst(const UnionFst<A> &fst, bool safe = false)
153 // Get a copy of this UnionFst. See Fst<>::Copy() for further doc.
154 virtual UnionFst<A> *Copy(bool safe = false) const {
155 return new UnionFst<A>(*this, safe);
160 // Specialization for UnionFst.
162 class StateIterator< UnionFst<A> > : public StateIterator< RationalFst<A> >
    [all...]
fst-decl.h 69 template <class A> class UnionFst;
111 typedef UnionFst<StdArc> StdUnionFst;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
union.h 107 class UnionFst : public RationalFst<A> {
115 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2) {
119 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2, const UnionFstOptions &opts)
124 UnionFst(const UnionFst<A> &fst) : RationalFst<A>(fst) {}
126 virtual UnionFst<A> *Copy() const { return new UnionFst<A>(*this); }
130 // Specialization for UnionFst.
132 class StateIterator< UnionFst<A> > : public StateIterator< RationalFst<A> > {
134 explicit StateIterator(const UnionFst<A> &fst
    [all...]
fst-decl.h 53 template <class A> class UnionFst;
75 typedef UnionFst<StdArc> StdUnionFst;
  /external/openfst/src/test/
algo_test.h 92 UnionFst<Arc> U2(T1, T2);
140 UnionFst<Arc> U1(T1, T2);
141 UnionFst<Arc> U2(U1, T3);
143 UnionFst<Arc> U3(T2, T3);
144 UnionFst<Arc> U4(T1, U3);
152 UnionFst<Arc> U1(T1, T2);
155 UnionFst<Arc> U3(T2, T3);
156 UnionFst<Arc> U4(T1, U3);
236 UnionFst<Arc> U1(T1, T2);
241 UnionFst<Arc> U2(C2, C3)
    [all...]

Completed in 569 milliseconds