Lines Matching refs:TestClass
53 struct TestClass { struct
54 explicit TestClass(int x) : data(x) {} in TestClass() function
68 TestClass(TestClass const&) = delete; argument
69 TestClass& operator=(TestClass const&) = delete;
72 struct DerivedFromTestClass : public TestClass {
73 explicit DerivedFromTestClass(int x) : TestClass(x) {} in DerivedFromTestClass()
84 typedef Signature TestClass::*ClassFunc; in test_b12()
85 ClassFunc func_ptr = &TestClass::operator(); in test_b12()
110 typedef int TestClass::*ClassFunc; in test_b34()
111 ClassFunc func_ptr = &TestClass::data; in test_b34()
152 TestClass cl(42); in bullet_one_two_tests()
176 TestClass cl_obj(42); in bullet_one_two_tests()
177 std::reference_wrapper<TestClass> cl(cl_obj); in bullet_one_two_tests()
202 TestClass cl_obj(42); in bullet_one_two_tests()
203 TestClass *cl = &cl_obj; in bullet_one_two_tests()
221 typedef TestClass Fn; in bullet_three_four_tests()
247 typedef TestClass Fn; in bullet_three_four_tests()
263 typedef TestClass Fn; in bullet_three_four_tests()
293 typedef TestClass Fn; in bullet_five_tests()