Lines Matching defs:a2
557 Action<MyGlobalFunction> a2(a1); // Tests the copy constructor. in TEST() local
590 const Action<int(char)> a2 = Action<int(char)>(a1); // NOLINT in TEST() local
652 Action<void*()> a2 = ReturnZeroFromNullaryFunction(); in TEST() local
677 Action<std::string()> a2 = Return("world"); in TEST() local
867 const Action<const char*(bool)> a2 = ReturnNull(); // NOLINT in TEST() local
877 const Action<std::shared_ptr<int>(std::string)> a2 = ReturnNull(); in TEST() local
1118 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world"); in TEST() local
1159 Action<MyStringFunction> a2 = SetArgPointee<1>(world); in TEST() local
1234 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST() local
1251 Action<int(int, double, char)> a2 = // NOLINT in TEST() local
1743 TenArgConstructorClass(int a1, int a2, int a3, int a4, int a5, int a6, int a7, in TenArgConstructorClass()
2078 Action<void(std::unique_ptr<int>)> a2 = [&saved](std::unique_ptr<int> p) { in TEST() local
2095 const Action<int(bool)> a2 = Action<int(bool)>(a1); in TEST() local
2138 Action<void(std::unique_ptr<int>, int*)> a2 = testing::SetArgPointee<1>(3); in TEST() local