Lines Matching refs:a1
328 Action<int(int, int, double, const string&)> a1 =
331 EXPECT_EQ(12, a1.Perform(
342 Action<int(string, bool, int, int)> a1 =
344 EXPECT_EQ(12, a1.Perform(make_tuple(CharPtr("hi"), true, 10, 2)));
504 const Action<void(int n)> a1 = SaveArg<0>(&result);
505 a1.Perform(make_tuple(5));
511 const Action<void(bool, char)> a1 = SaveArg<1>(&result);
512 a1.Perform(make_tuple(true, 'a'));
519 const Action<void(const int*)> a1 = SaveArgPointee<0>(&result);
520 a1.Perform(make_tuple(&value));
527 const Action<void(bool, char*)> a1 = SaveArgPointee<1>(&result);
528 a1.Perform(make_tuple(true, &value));
535 const Action<void(linked_ptr<int>)> a1 = SaveArgPointee<0>(&result);
536 a1.Perform(make_tuple(value));
542 const Action<void(int&)> a1 = SetArgReferee<0>(1);
543 a1.Perform(tuple<int&>(value));
549 const Action<void(int, int&)> a1 = SetArgReferee<1>('a');
550 a1.Perform(tuple<int, int&>(0, value));
556 const Action<void(bool, int, int&, const char*)> a1 = SetArgReferee<2>('a');
557 a1.Perform(tuple<bool, int, int&, const char*>(true, 0, value, "hi"));
582 const Action<void(DeletionTester*)> a1 = DeleteArg<0>(); // NOLINT
584 a1.Perform(make_tuple(t));
592 int, int, int, int, DeletionTester*)> a1 = DeleteArg<9>();
594 a1.Perform(make_tuple(true, 5, 6, CharPtr("hi"), false, 7, 8, 9, 10, t));