Home | History | Annotate | Download | only in test

Lines Matching refs:value_

208   explicit DogAdder(const char* value) : value_(value) {}
209 DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {}
213 value_ = other.value_;
218 msg << value_.c_str() << other.value_.c_str();
222 return value_ < other.value_;
224 const ::testing::internal::String& value() const { return value_; }
227 ::testing::internal::String value_;
246 explicit IntWrapper(int value) : value_(value) {}
247 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
250 value_ = other.value_;
254 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
256 return value_ < other.value_;
258 int value() const { return value_; }
261 int value_;