Lines Matching refs:value
486 const int value = 5;
488 a1.Perform(std::make_tuple(&value));
494 char value = 'a';
496 a1.Perform(std::make_tuple(true, &value));
501 int value = 0;
503 a1.Perform(std::tuple<int&>(value));
504 EXPECT_EQ(1, value);
508 int value = 0;
510 a1.Perform(std::tuple<int, int&>(0, value));
511 EXPECT_EQ('a', value);
515 int value = 0;
517 a1.Perform(std::tuple<bool, int, int&, const char*>(true, 0, value, "hi"));
518 EXPECT_EQ('a', value);
800 // The above line calls ByRef() on a const value.
1411 // Tests that ACTION_TEMPLATE works when there is no value parameter.
1423 // Tests that ACTION_TEMPLATE works when there are value parameters.
1445 explicit BoolResetter(bool* value) : value_(value) {}
1481 explicit GiantTemplate(int a_value) : value(a_value) {}
1482 int value;
1490 AND_1_VALUE_PARAMS(value)) {
1491 return GiantTemplate<T10<T1>, T2, T3, k4, k5, k6, T7, T8, T9>(value);
1500 EXPECT_EQ(42, giant.value);
1503 // Tests that ACTION_TEMPLATE works for 10 value parameters.
1515 // on the number of value parameters.