Searched defs:StateId (Results 1 - 25 of 117) sorted by relevance

12345

/external/openfst/src/include/fst/
H A Dequal.h32 typedef typename Arc::StateId StateId; typedef
48 StateId s1 = siter1.Value();
49 StateId s2 = siter2.Value();
H A Drmfinalepsilon.h38 typedef typename A::StateId StateId; typedef
51 unordered_set<StateId> finals;
53 StateId s = siter.Value();
72 StateId s = siter.Value();
H A Dstatesort.h39 const vector<typename Arc::StateId> &order) {
40 typedef typename Arc::StateId StateId; typedef
63 StateId s1 = siter.Value(), s2;
H A Dreverse.h44 typedef typename Arc::StateId StateId; typedef
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;
H A Dverify.h35 typedef typename Arc::StateId StateId; typedef
37 StateId start = fst.Start();
42 StateId ns = 0;
59 StateId s = siter.Value();
H A Dclosure.h47 typedef typename Arc::StateId StateId; typedef
52 StateId start = fst->Start();
56 StateId s = siter.Value();
63 StateId nstart = fst->AddState();
143 typedef typename A::StateId StateId; typedef in class:fst::ArcIterator
145 ArcIterator(const ClosureFst<A> &fst, StateId s)
H A Ddfs-visit.h47 // typedef typename Arc::StateId StateId;
53 // bool InitState(StateId s, StateId root);
55 // bool TreeArc(StateId s, const Arc &a);
57 // bool BackArc(StateId s, const Arc &a);
59 // bool ForwardOrCrossArc(StateId s, const Arc &a);
62 // void FinishState(StateId s, StateId parent, const Arc *parent_arc);
75 typedef typename Arc::StateId StateI typedef in struct:fst::DfsState
93 typedef typename Arc::StateId StateId; typedef
[all...]
H A Ddifference.h69 typedef typename A::StateId StateId; typedef in class:fst::DifferenceFst
135 typedef typename A::StateId StateId; typedef in class:fst::ArcIterator
137 ArcIterator(const DifferenceFst<A> &fst, StateId s)
H A Dintersect.h68 typedef typename A::StateId StateId; typedef in class:fst::IntersectFst
119 typedef typename A::StateId StateId; typedef in class:fst::ArcIterator
121 ArcIterator(const IntersectFst<A> &fst, StateId s)
H A Dmap.h58 typedef typename B::StateId StateId; typedef in class:fst::MapFst
98 ArcIterator(const ArcMapFst<A, B, C> &fst, typename A::StateId s)
H A Dtopsort.h41 typedef typename A::StateId StateId; typedef in class:fst::TopOrderVisitor
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
92 typedef typename Arc::StateId StateId; typedef
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsum.h58 typedef typename A::StateId StateId; typedef
62 StateId s = siter.Value();
H A Dequal.h29 typedef typename Arc::StateId StateId; typedef
45 StateId s1 = siter1.Value();
46 StateId s2 = siter2.Value();
H A Dexpanded-fst.h31 typedef typename A::StateId StateId; typedef in class:fst::ExpandedFst
33 virtual StateId NumStates() const = 0; // State count
82 typename Arc::StateId CountStates(const Fst<Arc> &fst) {
87 typename Arc::StateId nstates = 0;
H A Drmfinalepsilon.h31 typedef typename A::StateId StateId; typedef
44 std::unordered_set<StateId> finals;
46 StateId s = siter.Value();
65 StateId s = siter.Value();
H A Dstatesort.h34 const vector<typename Arc::StateId> &order) {
35 typedef typename Arc::StateId StateId; typedef
54 StateId s1 = siter.Value(), s2;
H A Dverify.h32 typedef typename Arc::StateId StateId; typedef
34 StateId start = fst.Start();
39 StateId ns = 0;
56 StateId s = siter.Value();
H A Dreverse.h37 typedef typename Arc::StateId StateId; typedef
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;
H A Darc.h33 typedef int StateId; typedef in struct:fst::StdArc
35 StdArc(Label i, Label o, Weight w, StateId s)
48 StateId nextstate; // Transition destination state
57 typedef int StateId; typedef in struct:fst::LogArc
59 LogArc(Label i, Label o, Weight w, StateId s)
72 StateId nextstate; // Transition destination state
82 typedef int StateId; typedef in class:fst::StringArc
84 StringArc(Label i, Label o, Weight w, StateId s)
101 StateId nextstate; // Transition destination state
111 typedef typename A::StateId StateI typedef in struct:fst::GallicArc
145 typedef typename A::StateId StateId; typedef in struct:fst::ReverseArc
[all...]
H A Dclosure.h40 typedef typename Arc::StateId StateId; typedef
45 StateId start = fst->Start();
49 StateId s = siter.Value();
55 StateId nstart = fst->AddState();
130 typedef typename A::StateId StateId; typedef in class:fst::ArcIterator
132 ArcIterator(const ClosureFst<A> &fst, StateId s)
H A Dconcat.h40 typedef typename Arc::StateId StateId; typedef
44 StateId start1 = fst1->Start();
51 StateId numstates1= fst1->NumStates();
56 StateId s1 = fst1->AddState();
57 StateId s2 = siter2.Value();
68 StateId start2 = fst2.Start();
69 for (StateId s1 = 0; s1 < numstates1; ++s1) {
111 typedef typename A::StateId StateId; typedef in class:fst::ConcatFst
141 typedef typename A::StateId StateId; typedef in class:fst::ArcIterator
[all...]
H A Ddfs-visit.h37 // typedef typename Arc::StateId StateId;
43 // bool InitState(StateId s, StateId root);
45 // bool TreeArc(StateId s, const Arc &a);
47 // bool BackArc(StateId s, const Arc &a);
49 // bool ForwardOrCrossArc(StateId s, const Arc &a);
52 // void FinishState(StateId s, StateId parent, const Arc *parent_arc);
65 typedef typename Arc::StateId StateI typedef in struct:fst::DfsState
78 typedef typename Arc::StateId StateId; typedef
[all...]
H A Ddifference.h50 typedef typename A::StateId StateId; typedef in class:fst::DifferenceFst
103 typedef typename A::StateId StateId; typedef in class:fst::ArcIterator
105 ArcIterator(const DifferenceFst<A> &fst, StateId s)
/external/openfst/src/include/fst/script/
H A Dprune.h57 typedef typename A::StateId StateId; typedef
60 StateId state_threshold = opts.state_threshold;
83 typedef typename Arc::StateId StateId; typedef
H A Dshortest-path.h61 typedef typename Arc::StateId StateId; typedef
71 typedef AutoQueue<StateId> Queue;
83 typedef FifoQueue<StateId> Queue;
95 typedef LifoQueue<StateId> Queue;
107 typedef NaturalShortestFirstQueue<StateId, Weight> Queue;
119 typedef StateOrderQueue<StateId> Queue;
131 typedef TopOrderQueue<StateId> Queue;

Completed in 2525 milliseconds

12345