Home | History | Annotate | Download | only in fst

Lines Matching full:done_

102       : weight_(w), done_(w.Size() <= 1) {}
104 bool Done() const { return done_; }
106 void Next() { done_ = true; }
117 void Reset() { done_ = weight_.Size() <= 1; }
121 bool done_;
130 : weight_(w), done_(w.Value1().Size() <= 1) {}
132 bool Done() const { return done_; }
134 void Next() { done_ = true; }
143 void Reset() { done_ = weight_.Value1().Size() <= 1; }
147 bool done_;