Searched defs:SetFinal (Results 1 - 6 of 6) sorted by relevance

/external/openfst/src/include/fst/
H A Dmutable-fst.h54 virtual void SetFinal(StateId, Weight) = 0; // Set a state's final weight
264 virtual void SetFinal(StateId s, Weight w) { function in class:fst::ImplToMutableFst
266 GetImpl()->SetFinal(s, w);
H A Dedit-fst.h169 Weight SetFinal(StateId s, Weight w, const WrappedFstT *wrapped) { function in class:fst::EditFstData
179 edits_.SetFinal(GetEditableInternalId(s, wrapped), w);
303 edits_.SetFinal(new_internal_id, wrapped->Final(s));
305 edits_.SetFinal(new_internal_id, final_weight_it->second);
518 void SetFinal(StateId s, Weight w) { function in class:fst::EditFstImpl
520 Weight old_weight = data_->SetFinal(s, w, wrapped_);
H A Dvector-fst.h65 void SetFinal(StateId s, Weight w) { states_[s]->final = w; } function in class:fst::VectorFstBaseImpl
218 void SetFinal(StateId s, Weight w) { function in class:fst::VectorFstImpl
220 BaseImpl::SetFinal(s, w);
307 BaseImpl::SetFinal(s, fst.Final(s));
H A Dcache.h92 // SetFinal(), AddArc(), (or PushArc() and SetArcs()) to cache. Note
219 void SetFinal(StateId s, Weight w) { function in class:fst::CacheBaseImpl
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcache.h49 // SetFinal(), AddArc(), and SetArcs() to cache. Note you must set the
164 void SetFinal(StateId s, Weight w) { function in class:fst::CacheBaseImpl
H A Dvector-fst.h59 void SetFinal(StateId s, Weight w) { states_[s]->final = w; } function in class:fst::VectorFstBaseImpl
213 void SetFinal(StateId s, Weight w) { function in class:fst::VectorFstImpl
217 BaseImpl::SetFinal(s, w);
334 BaseImpl::SetFinal(s, fst.Final(s));
581 virtual void SetFinal(StateId s, Weight w) { function in class:fst::VectorFst
583 impl_->SetFinal(s, w);

Completed in 140 milliseconds