HomeSort by relevance Sort by last modified time
    Searched defs:StateId (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/openfst/src/include/fst/
equal.h 32 typedef typename Arc::StateId StateId;
48 StateId s1 = siter1.Value();
49 StateId s2 = siter2.Value();
reverse.h 44 typedef typename Arc::StateId StateId;
53 StateId istart = ifst.Start();
54 StateId ostart = ofst->AddState();
60 StateId is = siter.Value();
61 StateId os = is + 1;
78 StateId nos = iarc.nextstate + 1;
rmfinalepsilon.h 38 typedef typename A::StateId StateId;
51 unordered_set<StateId> finals;
53 StateId s = siter.Value();
72 StateId s = siter.Value();
statesort.h 39 const vector<typename Arc::StateId> &order) {
40 typedef typename Arc::StateId StateId;
63 StateId s1 = siter.Value(), s2;
verify.h 35 typedef typename Arc::StateId StateId;
37 StateId start = fst.Start();
42 StateId ns = 0;
59 StateId s = siter.Value();
closure.h 47 typedef typename Arc::StateId StateId;
52 StateId start = fst->Start();
56 StateId s = siter.Value();
63 StateId nstart = fst->AddState();
143 typedef typename A::StateId StateId;
145 ArcIterator(const ClosureFst<A> &fst, StateId s)
difference.h 69 typedef typename A::StateId StateId;
135 typedef typename A::StateId StateId;
137 ArcIterator(const DifferenceFst<A> &fst, StateId s)
intersect.h 68 typedef typename A::StateId StateId;
119 typedef typename A::StateId StateId;
121 ArcIterator(const IntersectFst<A> &fst, StateId s)
map.h 58 typedef typename B::StateId StateId;
98 ArcIterator(const ArcMapFst<A, B, C> &fst, typename A::StateId s)
topsort.h 41 typedef typename A::StateId StateId;
46 TopOrderVisitor(vector<StateId> *order, bool *acyclic)
50 finish_ = new vector<StateId>;
54 bool InitState(StateId s, StateId r) { return true; }
56 bool TreeArc(StateId s, const A &arc) { return true; }
58 bool BackArc(StateId s, const A &arc) { return (*acyclic_ = false); }
60 bool ForwardOrCrossArc(StateId s, const A &arc) { return true; }
62 void FinishState(StateId s, StateId p, const A *) { finish_->push_back(s);
    [all...]
concat.h 48 typedef typename Arc::StateId StateId;
65 StateId start1 = fst1->Start();
71 StateId numstates1 = fst1->NumStates();
78 StateId s1 = fst1->AddState();
79 StateId s2 = siter2.Value();
91 StateId start2 = fst2.Start();
92 for (StateId s1 = 0; s1 < numstates1; ++s1) {
114 typedef typename Arc::StateId StateId;
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsum.h 58 typedef typename A::StateId StateId;
62 StateId s = siter.Value();
equal.h 29 typedef typename Arc::StateId StateId;
45 StateId s1 = siter1.Value();
46 StateId s2 = siter2.Value();
expanded-fst.h 31 typedef typename A::StateId StateId;
33 virtual StateId NumStates() const = 0; // State count
82 typename Arc::StateId CountStates(const Fst<Arc> &fst) {
87 typename Arc::StateId nstates = 0;
reverse.h 37 typedef typename Arc::StateId StateId;
44 StateId istart = ifst.Start();
45 StateId ostart = ofst->AddState();
51 StateId is = siter.Value();
52 StateId os = is + 1;
69 StateId nos = iarc.nextstate + 1;
rmfinalepsilon.h 32 typedef typename A::StateId StateId;
45 hash_set<StateId> finals;
47 StateId s = siter.Value();
66 StateId s = siter.Value();
statesort.h 34 const vector<typename Arc::StateId> &order) {
35 typedef typename Arc::StateId StateId;
54 StateId s1 = siter.Value(), s2;
verify.h 32 typedef typename Arc::StateId StateId;
34 StateId start = fst.Start();
39 StateId ns = 0;
56 StateId s = siter.Value();
arc.h 33 typedef int StateId;
35 StdArc(Label i, Label o, Weight w, StateId s)
48 StateId nextstate; // Transition destination state
57 typedef int StateId;
59 LogArc(Label i, Label o, Weight w, StateId s)
72 StateId nextstate; // Transition destination state
82 typedef int StateId;
84 StringArc(Label i, Label o, Weight w, StateId s)
101 StateId nextstate; // Transition destination state
111 typedef typename A::StateId StateId
    [all...]
closure.h 40 typedef typename Arc::StateId StateId;
45 StateId start = fst->Start();
49 StateId s = siter.Value();
55 StateId nstart = fst->AddState();
130 typedef typename A::StateId StateId;
132 ArcIterator(const ClosureFst<A> &fst, StateId s)
difference.h 50 typedef typename A::StateId StateId;
103 typedef typename A::StateId StateId;
105 ArcIterator(const DifferenceFst<A> &fst, StateId s)
intersect.h 47 typedef typename A::StateId StateId;
94 typedef typename A::StateId StateId;
96 ArcIterator(const IntersectFst<A> &fst, StateId s)
prune.h 59 typedef typename Arc::StateId StateId;
67 StateId ns = fst->NumStates();
87 vector<StateId> dead;
92 for (StateId state = 0; state < ns; ++state) {
145 typedef typename Arc::StateId StateId;
171 vector<StateId> copy;
180 StateId state = sit.Value();
topsort.h 36 typedef typename A::StateId StateId;
41 TopOrderVisitor(vector<StateId> *order, bool *acyclic)
45 finish_ = new vector<StateId>;
49 bool InitState(StateId s, StateId r) { return true; }
51 bool TreeArc(StateId s, const A &arc) { return true; }
53 bool BackArc(StateId s, const A &arc) { return (*acyclic_ = false); }
55 bool ForwardOrCrossArc(StateId s, const A &arc) { return true; }
57 void FinishState(StateId s, StateId p, const A *) { finish_->push_back(s);
    [all...]
  /external/openfst/src/include/fst/script/
prune.h 57 typedef typename A::StateId StateId;
60 StateId state_threshold = opts.state_threshold;
83 typedef typename Arc::StateId StateId;

Completed in 368 milliseconds

1 2 3 4 5