Searched refs:value_ (Results 26 - 46 of 46) sorted by relevance

12

/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-typed-test.h51 T value_;
70 TypeParam n = this->value_;
H A Dgtest.h492 key_(a_key), value_(a_value) {
502 return value_.c_str();
507 value_ = new_value;
514 std::string value_; member in class:testing::TestProperty
/gem5/ext/dsent/libutil/
H A DMap.h57 // Get the value_ corresponding to the key_
59 // Get the value_ corresponding to the key_ if the key_ exist, otherwise, the default_value_is returned
61 // Add/Update a <key_, value_> entry
62 void set(const String& key_, const T& value_);
145 template<class T> void Map<T>::set(const String& key_, const T& value_) argument
147 mMap[key_] = value_;
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc1009 NullaryConstructorClass() : value_(123) {}
1010 int value_; member in class:testing::gmock_generated_actions_test::NullaryConstructorClass
1017 EXPECT_EQ(123, c->value_);
1023 explicit UnaryConstructorClass(int value) : value_(value) {}
1024 int value_; member in class:testing::gmock_generated_actions_test::UnaryConstructorClass
1031 EXPECT_EQ(4000, c->value_);
1039 EXPECT_EQ(4000, c->value_);
1047 EXPECT_EQ(4000, c->value_);
1055 : value_(a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10) {
1057 int value_; member in class:testing::gmock_generated_actions_test::TenArgConstructorClass
1111 bool* value_; member in class:testing::gmock_generated_actions_test::BoolResetter
[all...]
H A Dgmock-actions_test.cc197 MyDefaultConstructible() : value_(42) {}
199 int value() const { return value_; }
202 int value_; member in class:__anon14::MyDefaultConstructible
209 explicit MyNonDefaultConstructible(int a_value) : value_(a_value) {}
211 int value() const { return value_; }
214 int value_; member in class:__anon14::MyNonDefaultConstructible
1117 Foo() : value_(123) {}
1119 int Nullary() const { return value_; }
1122 int value_; member in class:__anon14::Foo
H A Dgmock-more-actions_test.cc182 Foo() : value_(123) {}
184 int Nullary() const { return value_; }
186 short Unary(long x) { return static_cast<short>(value_ + x); } // NOLINT
190 int Ternary(int x, bool y, char z) { return value_ + x + y*z; }
193 return a + b + c + d + value_;
230 int value_; member in class:testing::gmock_more_actions_test::Foo
H A Dgmock-matchers_test.cc541 explicit IntValue(int a_value) : value_(a_value) {}
543 int value() const { return value_; }
545 int value_; member in class:testing::gmock_matchers_test::IntValue
3359 Uncopyable() : value_(-1) {}
3360 explicit Uncopyable(int a_value) : value_(a_value) {}
3362 int value() const { return value_; }
3363 void set_value(int i) { value_ = i; }
3366 int value_; member in class:testing::gmock_matchers_test::Uncopyable
4038 explicit NotCopyable(int a_value) : value_(a_value) {}
4040 int value() const { return value_; }
4050 int value_; member in class:testing::gmock_matchers_test::NotCopyable
4537 value_type value_; member in class:testing::gmock_matchers_test::Streamlike::ConstIter::PostIncrProxy
[all...]
H A Dgmock-generated-matchers_test.cc869 explicit UncopyableFoo(char value) : value_(value) {}
874 char value_; member in class:__anon17::UncopyableFoo
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.h225 sc_signal<T,POL>::write( const T& value_ )
227 bool value_changed = !( m_cur_val == value_ );
231 m_new_val = value_;
/gem5/ext/googletest/googletest/test/
H A Dgtest-printers_test.cc107 UnprintableTemplateInGlobal() : value_() {}
109 T value_; member in class:UnprintableTemplateInGlobal
161 explicit PrintableViaPrintToTemplate(const T& a_value) : value_(a_value) {}
163 const T& value() const { return value_; }
165 T value_; member in class:foo::PrintableViaPrintToTemplate
177 StreamableTemplateInFoo() : value_() {}
179 const T& value() const { return value_; }
181 T value_; member in class:foo::StreamableTemplateInFoo
H A Dgtest-port_test.cc1054 value_(0), mutex_(mutex), random_(42) {}
1058 int temp = value_;
1061 // value_ rearranged with the call to SleepMilliseconds when observed
1086 value_ = temp + 1;
1088 int value() const { return value_; }
1091 volatile int value_; member in class:testing::internal::AtomicCounterWithMutex
1092 Mutex* const mutex_; // Protects value_.
H A Dgtest_unittest.cc3822 explicit Uncopyable(int a_value) : value_(a_value) {}
3824 int value() const { return value_; }
3833 int value_; member in class:__anon65::Uncopyable
/gem5/ext/dsent/model/
H A DElectricalModel.h180 void addElecticalWireAtomicResultValue(const String& wire_layer_, double value_);
H A DElectricalModel.cc742 void ElectricalModel::addElecticalWireAtomicResultValue(const String& wire_layer_, double value_) argument
744 getAreaResult(wire_layer_ + "Wire")->addValue(value_);
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h1306 : value_(::testing::internal::move(value)) {
1312 T Unwrap() { return ::testing::internal::move(value_); }
1319 return value_;
1323 T value_;
/gem5/ext/googletest/googlemock/scripts/
H A Dgmock_doctor.py223 r'\'testing::internal::ReturnAction<R>::Impl<F>::value_\' '
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h310 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
320 return fp.u_.value_;
370 RawType value_; // The raw floating-point number. member in union:testing::internal::FloatingPoint::FloatingPointUnion
/gem5/src/systemc/tests/include/specialized_signals/
H A Dscx_signal_int.h1206 inline void initialize( const sc_dt::sc_int<W>& value_ )
1210 iface->write( value_ );
1215 *m_init_val_p = value_;
H A Dscx_signal_uint.h1264 inline void initialize( const sc_dt::sc_uint<W>& value_ )
1268 iface->write( value_ );
1273 *m_init_val_p = value_;
H A Dscx_signal_signed.h1388 inline void initialize( const sc_dt::sc_bigint<W>& value_ )
1392 iface->write( value_ );
1397 *m_init_val_p = value_;
H A Dscx_signal_unsigned.h1384 inline void initialize( const sc_dt::sc_biguint<W>& value_ )
1388 iface->write( value_ );
1393 *m_init_val_p = value_;

Completed in 78 milliseconds

12