Home | History | Annotate | Download | only in lib

Lines Matching defs:done_

83       : weight_(w), done_(w.Size() <= 1) {}
85 bool Done() const { return done_; }
87 void Next() { done_ = true; }
98 void Reset() { done_ = weight_.Size() <= 1; }
102 bool done_;
111 : weight_(w), done_(w.Value1().Size() <= 1) {}
113 bool Done() const { return done_; }
115 void Next() { done_ = true; }
124 void Reset() { done_ = weight_.Value1().Size() <= 1; }
128 bool done_;