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

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rational.h 36 template <class A> class RationalFst;
37 template <class A> void Union(RationalFst<A> *fst1, const Fst<A> &fst2);
38 template <class A> void Concat(RationalFst<A> *fst1, const Fst<A> &fst2);
39 template <class A> void Closure(RationalFst<A> *fst, ClosureType closure_type);
135 // Implementation of Union(Fst &, RationalFst *)
151 // Implementation of Concat(Fst &, RationalFst *)
167 // Implementation of Closure(RationalFst *, closure_type)
187 class RationalFst : public Fst<A> {
189 friend class CacheStateIterator< RationalFst<A> >;
190 friend class ArcIterator< RationalFst<A> >
    [all...]
closure.h 66 // RationalFst input.
68 void Closure(RationalFst<Arc> *fst, ClosureType closure_type) {
96 class ClosureFst : public RationalFst<A> {
98 using RationalFst<A>::Impl;
107 : RationalFst<A>(opts) {
111 ClosureFst(const ClosureFst<A> &fst) : RationalFst<A>(fst) {}
119 class StateIterator< ClosureFst<A> > : public StateIterator< RationalFst<A> > {
122 : StateIterator< RationalFst<A> >(fst) {}
128 class ArcIterator< ClosureFst<A> > : public ArcIterator< RationalFst<A> > {
133 : ArcIterator< RationalFst<A> >(fst, s) {
    [all...]
concat.h 83 // RationalFst input.
85 void Concat(RationalFst<Arc> *fst1, const Fst<Arc> &fst2) {
105 class ConcatFst : public RationalFst<A> {
107 using RationalFst<A>::Impl;
118 const ConcatFstOptions &opts) : RationalFst<A>(opts) {
122 ConcatFst(const ConcatFst<A> &fst) : RationalFst<A>(fst) {}
130 class StateIterator< ConcatFst<A> > : public StateIterator< RationalFst<A> > {
133 : StateIterator< RationalFst<A> >(fst) {}
139 class ArcIterator< ConcatFst<A> > : public ArcIterator< RationalFst<A> > {
144 : ArcIterator< RationalFst<A> >(fst, s) {
    [all...]
union.h 85 // RationalFst argument.
87 void Union(RationalFst<Arc> *fst1, const Fst<Arc> &fst2) {
107 class UnionFst : public RationalFst<A> {
109 using RationalFst<A>::Impl;
120 : RationalFst<A>(opts) {
124 UnionFst(const UnionFst<A> &fst) : RationalFst<A>(fst) {}
132 class StateIterator< UnionFst<A> > : public StateIterator< RationalFst<A> > {
135 : StateIterator< RationalFst<A> >(fst) {}
141 class ArcIterator< UnionFst<A> > : public ArcIterator< RationalFst<A> > {
146 : ArcIterator< RationalFst<A> >(fst, s) {
    [all...]

Completed in 351 milliseconds