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.h165 Weight SetFinal(StateId s, Weight w, const WrappedFstT *wrapped) { function in class:fst::EditFstData
175 edits_.SetFinal(GetEditableInternalId(s, wrapped), w);
299 edits_.SetFinal(new_internal_id, wrapped->Final(s));
301 edits_.SetFinal(new_internal_id, final_weight_it->second);
513 void SetFinal(StateId s, Weight w) { function in class:fst::EditFstImpl
515 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);
306 BaseImpl::SetFinal(s, fst.Final(s));
H A Dcache.h92 // SetFinal(), AddArc(), (or PushArc() and SetArcs()) to cache. Note you
228 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));
579 virtual void SetFinal(StateId s, Weight w) { function in class:fst::VectorFst
581 impl_->SetFinal(s, w);

Completed in 110 milliseconds