Lines Matching refs:value_
166 delete value_; in Set() local
167 value_ = new T(x); in Set()
172 delete value_; in Clear() local
173 value_ = NULL; in Clear()
177 static bool IsSet() { return value_ != NULL; } in IsSet()
189 return value_ == NULL ? in Get()
190 internal::BuiltInDefaultValue<T>::Get() : *value_; in Get()
194 static const T* value_;
244 const T* DefaultValue<T>::value_ = NULL;
456 explicit ReturnAction(R value) : value_(value) {} in ReturnAction()
474 return Action<F>(new Impl<F>(value_));
493 : value_(::testing::internal::ImplicitCast_<Result>(value)) {} in Impl()
495 virtual Result Perform(const ArgumentTuple&) { return value_; } in Perform()
500 Result value_; variable
505 R value_; variable
587 explicit ReturnRefOfCopyAction(const T& value) : value_(value) {} // NOLINT in ReturnRefOfCopyAction()
600 return Action<F>(new Impl<F>(value_));
611 explicit Impl(const T& value) : value_(value) {} // NOLINT in Impl()
614 return value_; in Perform()
618 T value_;
623 const T value_; variable
642 AssignAction(T1* ptr, T2 value) : ptr_(ptr), value_(value) {} in AssignAction()
646 *ptr_ = value_; in Perform()
651 const T2 value_; variable
690 explicit SetArgumentPointeeAction(const A& value) : value_(value) {} in SetArgumentPointeeAction()
695 *::std::tr1::get<N>(args) = value_; in Perform()
699 const A value_;