Searched defs:nextstate (Results 1 - 3 of 3) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darc.h36 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
48 StateId nextstate; // Transition destination state member in struct:fst::StdArc
60 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
72 StateId nextstate; // Transition destination state member in struct:fst::LogArc
85 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
101 StateId nextstate; // Transition destination state member in class:fst::StringArc
117 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
121 weight(arc.olabel, arc.weight), nextstate(arc.nextstate) {}
135 StateId nextstate; // Transitio member in struct:fst::GallicArc
160 StateId nextstate; // Transition destination state member in struct:fst::ReverseArc
[all...]
H A Dreplace.h311 StateId nextstate = local
312 FindState(StateTuple(prefix_id, top.fst_id, top.nextstate));
313 AddArc(s, A(0, 0, fst->Final(fst_state), nextstate));
321 StateId nextstate = local
322 FindState(StateTuple(tuple.prefix_id, tuple.fst_id, arc.nextstate));
323 AddArc(s, A(arc.ilabel, arc.olabel, arc.weight, nextstate));
332 tuple.fst_id, arc.nextstate);
344 StateId nextstate = local
346 StateTuple(tuple.prefix_id, tuple.fst_id, arc.nextstate));
347 AddArc(s, A(arc.ilabel, arc.olabel, arc.weight, nextstate));
391 StateId nextstate; member in struct:fst::ReplaceFstImpl::PrefixTuple
405 Push(int fst_id, StateId nextstate) argument
479 PushPrefix(StackPrefix prefix, Label fst_id, StateId nextstate) argument
[all...]
H A Drmepsilon.h81 StateId nextstate; member in struct:fst::RmEpsilonState::Element
86 : ilabel(i), olabel(o), nextstate(s) {}
92 return static_cast<size_t>(e.nextstate);
93 return static_cast<size_t>(e.nextstate +
107 && (e1.nextstate == e2.nextstate);
158 while ((StateId)visited_.size() <= arc.nextstate)
160 if (!visited_[arc.nextstate])
161 eps_queue_.push(arc.nextstate);
163 Element element(arc.ilabel, arc.olabel, arc.nextstate);
[all...]

Completed in 51 milliseconds