Lines Matching refs:value_
358 MyDefaultConstructible() : value_(42) {} in MyDefaultConstructible()
360 int value() const { return value_; } in value()
363 int value_; member in testing::__anon10e2b6f40111::MyDefaultConstructible
370 explicit MyNonDefaultConstructible(int a_value) : value_(a_value) {} in MyNonDefaultConstructible()
372 int value() const { return value_; } in value()
375 int value_; member in testing::__anon10e2b6f40111::MyNonDefaultConstructible
1219 Foo() : value_(123) {} in Foo()
1221 int Nullary() const { return value_; } in Nullary()
1224 int value_; member in testing::__anon10e2b6f40111::Foo
1745 : value_(a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10) {} in TenArgConstructorClass()
1746 int value_; member in testing::__anon10e2b6f40111::TenArgConstructorClass
1755 EXPECT_EQ(1234567890, c->value_); in TEST()