Searched refs:ComposeFst (Results 1 – 10 of 10) sorted by relevance
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | intersect.h | 41 class IntersectFst : public ComposeFst<A> { 43 using ComposeFst<A>::Impl; 50 : ComposeFst<A>(fst1, fst2) { in IntersectFst() 62 : ComposeFst<A>(fst1, fst2, ComposeFstOptions<T>(opts)) { in IntersectFst() 71 IntersectFst(const IntersectFst<A> &fst) : ComposeFst<A>(fst) {} in IntersectFst() 82 : public StateIterator< ComposeFst<A> > { 85 : StateIterator< ComposeFst<A> >(fst) {} in StateIterator() 92 : public ArcIterator< ComposeFst<A> > { 97 : ArcIterator< ComposeFst<A> >(fst, s) {} in ArcIterator()
|
D | difference.h | 44 class DifferenceFst : public ComposeFst<A> { 46 using ComposeFst<A>::Impl; 54 : ComposeFst<A>(fst1, in DifferenceFst() 68 : ComposeFst<A>(fst1, in DifferenceFst() 80 : ComposeFst<A>(fst) {} in DifferenceFst() 91 : public StateIterator< ComposeFst<A> > { 94 : StateIterator< ComposeFst<A> >(fst) {} in StateIterator() 101 : public ArcIterator< ComposeFst<A> > { 106 : ArcIterator< ComposeFst<A> >(fst, s) {} in ArcIterator()
|
D | compose.h | 678 class ComposeFst : public Fst<A> { 680 friend class ArcIterator< ComposeFst<A> >; 681 friend class CacheStateIterator< ComposeFst<A> >; 682 friend class CacheArcIterator< ComposeFst<A> >; 689 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2) in ComposeFst() function 693 ComposeFst(const Fst<A> &fst1, in ComposeFst() function 698 ComposeFst(const ComposeFst<A> &fst) : Fst<A>(fst), impl_(fst.impl_) { in ComposeFst() function 702 virtual ~ComposeFst() { if (!impl_->DecrRefCount()) delete impl_; } in ~ComposeFst() 730 virtual ComposeFst<A> *Copy() const { in Copy() 731 return new ComposeFst<A>(*this); in Copy() [all …]
|
D | fst-decl.h | 41 template <class A> class ComposeFst; variable 65 typedef ComposeFst<StdArc> StdComposeFst;
|
/external/openfst/src/include/fst/ |
D | intersect.h | 58 class IntersectFst : public ComposeFst<A> { 60 using ComposeFst<A>::CreateBase; 61 using ComposeFst<A>::CreateBase1; 62 using ComposeFst<A>::Properties; 95 ComposeFst<A>(fst, safe) {} 107 : public StateIterator< ComposeFst<A> > { 110 : StateIterator< ComposeFst<A> >(fst) {} in StateIterator() 117 : public ArcIterator< ComposeFst<A> > { 122 : ArcIterator< ComposeFst<A> >(fst, s) {} in ArcIterator()
|
D | compose.h | 502 class ComposeFst : public ImplToFst< ComposeFstImplBase<A> > { 504 friend class ArcIterator< ComposeFst<A> >; 505 friend class StateIterator< ComposeFst<A> >; 516 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, 524 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, in ComposeFst() function 534 ComposeFst(const typename M1::FST &fst1, const typename M2::FST &fst2, in ComposeFst() function 539 ComposeFst(const ComposeFst<A> &fst, bool safe = false) { 547 virtual ComposeFst<A> *Copy(bool safe = false) const { 548 return new ComposeFst<A>(*this, safe); 558 ComposeFst() {} in ComposeFst() function [all …]
|
D | difference.h | 60 class DifferenceFst : public ComposeFst<A> { 65 using ComposeFst<A>::CreateBase1; 111 : ComposeFst<A>(fst, safe) {} 123 : public StateIterator< ComposeFst<A> > { 126 : StateIterator< ComposeFst<A> >(fst) {} in StateIterator() 133 : public ArcIterator< ComposeFst<A> > { 138 : ArcIterator< ComposeFst<A> >(fst, s) {} in ArcIterator()
|
D | fst-decl.h | 56 template <class A> class ComposeFst; variable 99 typedef ComposeFst<StdArc> StdComposeFst;
|
/external/openfst/src/test/ |
D | algo_test.h | 470 ComposeFst<Arc> C1(S1, S2); in TestCompose() 472 ComposeFst<Arc> C2(C1, S3); in TestCompose() 473 ComposeFst<Arc> C3(S2, S3); in TestCompose() 474 ComposeFst<Arc> C4(S1, C3); in TestCompose() 482 ComposeFst<Arc> C1(S1, U1); in TestCompose() 484 ComposeFst<Arc> C2(S1, S2); in TestCompose() 485 ComposeFst<Arc> C3(S1, S3); in TestCompose() 494 ComposeFst<Arc> C1(U1, S3); in TestCompose() 496 ComposeFst<Arc> C2(S1, S3); in TestCompose() 497 ComposeFst<Arc> C3(S2, S3); in TestCompose() [all …]
|
/external/openfst/src/include/fst/extensions/pdt/ |
D | compose.h | 506 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts); 529 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts);
|