Lines Matching refs:TestClass
58 struct TestClass { struct
59 explicit TestClass(int x) : data(x) {} in TestClass() function
73 TestClass(TestClass const&) = delete; argument
74 TestClass& operator=(TestClass const&) = delete;
77 struct DerivedFromTestClass : public TestClass {
78 explicit DerivedFromTestClass(int x) : TestClass(x) {} in DerivedFromTestClass()
89 typedef Signature TestClass::*ClassFunc; in test_b12()
90 ClassFunc func_ptr = &TestClass::operator(); in test_b12()
115 typedef int TestClass::*ClassFunc; in test_b34()
116 ClassFunc func_ptr = &TestClass::data; in test_b34()
157 TestClass cl(42); in bullet_one_two_tests()
181 TestClass cl_obj(42); in bullet_one_two_tests()
182 std::reference_wrapper<TestClass> cl(cl_obj); in bullet_one_two_tests()
207 TestClass cl_obj(42); in bullet_one_two_tests()
208 TestClass *cl = &cl_obj; in bullet_one_two_tests()
226 typedef TestClass Fn; in bullet_three_four_tests()
252 typedef TestClass Fn; in bullet_three_four_tests()
268 typedef TestClass Fn; in bullet_three_four_tests()
298 typedef TestClass Fn; in bullet_five_tests()