Home | History | Annotate | Download | only in lib

Lines Matching refs:value_

37   FloatWeight(float f) : value_(f) {}
39 FloatWeight(const FloatWeight &w) : value_(w.value_) {}
42 value_ = w.value_;
47 return ReadType(strm, &value_);
51 return WriteType(strm, value_);
58 } u = { value_ };
62 const float &Value() const { return value_; }
65 float value_;