Home | History | Annotate | Download | only in fst

Lines Matching refs:ofst_

199   CopyVisitor(MutableFst<Arc> *ofst) : ifst_(0), ofst_(ofst) {}
203 ofst_->DeleteStates();
204 ofst_->SetStart(ifst_->Start());
208 while (ofst_->NumStates() <= s)
209 ofst_->AddState();
214 ofst_->AddArc(s, arc);
219 ofst_->AddArc(s, arc);
224 ofst_->AddArc(s, arc);
229 ofst_->SetFinal(s, ifst_->Final(s));
236 MutableFst<Arc> *ofst_;