Lines Matching refs:TestClass
52 struct TestClass { struct
53 explicit TestClass(int x) : data(x) {} in TestClass() argument
67 TestClass(TestClass const&) = delete; argument
68 TestClass& operator=(TestClass const&) = delete;
71 struct DerivedFromTestClass : public TestClass {
72 explicit DerivedFromTestClass(int x) : TestClass(x) {} in DerivedFromTestClass()
83 typedef Signature TestClass::*ClassFunc; in test_b12()
84 ClassFunc func_ptr = &TestClass::operator(); in test_b12()
109 typedef int TestClass::*ClassFunc; in test_b34()
110 ClassFunc func_ptr = &TestClass::data; in test_b34()
151 TestClass cl(42); in bullet_one_two_tests()
175 TestClass cl_obj(42); in bullet_one_two_tests()
176 TestClass *cl = &cl_obj; in bullet_one_two_tests()
194 typedef TestClass Fn; in bullet_three_four_tests()
220 typedef TestClass Fn; in bullet_three_four_tests()
250 typedef TestClass Fn; in bullet_five_tests()