Lines Matching defs:ofst_

332 // MutableFst 'ofst_' to improve readability of the code.
484 MutableFst<Arc> *ofst_; // Output fst
555 // Returns the flags for state 's' in 'ofst_'.
561 // Modifies the flags for state 's' in 'ofst_'.
570 // Returns the shortest distance from the initial state to 's' in 'ofst_'.
576 // Sets the shortest distance from the initial state to 's' in 'ofst_' to 'w'.
584 // Returns the shortest distance from 's' to the final states in 'ofst_'.
590 // Sets the shortest distance from 's' to the final states in 'ofst_' to 'w'.
597 // Returns the PDT "source" state of state 's' in 'ofst_'.
603 // Sets the PDT "source" state of state 's' in 'ofst_' to state 'p' in 'ifst_'.
610 // Adds state 's' of 'efst_' to 'ofst_' and inserts it in the queue,
615 while (ofst_->NumStates() <= s) ofst_->AddState();
624 // Relaxes arc 'arc' out of state 's' in 'ofst_':
686 // Adds start state of 'efst_' to 'ofst_', enqueues it and initializes
692 ofst_->SetStart(s);
712 // Makes 's' final in 'ofst_' if shortest accepting path ending in 's'
719 ofst_->SetFinal(s, final);
723 // below the threshold. When 'add_arc' is true, 'arc' is added to 'ofst_'.
730 if(add_arc) ofst_->AddArc(s, arc);
735 // Processes an open paren arc 'arc' out of state 's' in 'ofst_'.
742 // adds the destination of 'arc' to 'ofst_' as a new source state
795 ofst_->AddArc(
812 // below threshold, if so adds it to 'ofst_'.
819 ofst_->AddArc(
824 // When 's' in 'ofst_' is a source state for stack id 'si', identifies
829 // states in 'ofst_'. Stores this information in 'dest_map_'.
873 ofst_ = ofst;
874 ofst_->DeleteStates();
875 ofst_->SetInputSymbols(ifst_->InputSymbols());
876 ofst_->SetOutputSymbols(ifst_->OutputSymbols());