Lines Matching refs:X1
53 struct X1 { struct
61 void test_X1(X1 x1) { in test_X1()
67 float* (X1::*mf1)(int) = &X1::f1; in test_X1()
68 float* (X1::*mf2)(int) = &X1::f1<>; in test_X1()
69 float* (X1::*mf3)(float) = &X1::f1<float>; in test_X1()
71 float* (*fp3)(int) = &X1::f2; in test_X1()
72 float* (*fp4)(int) = &X1::f2<>; in test_X1()
73 float* (*fp5)(float) = &X1::f2<float>; in test_X1()
74 float* (*fp6)(int) = X1::f2; in test_X1()
75 float* (*fp7)(int) = X1::f2<>; in test_X1()
76 float* (*fp8)(float) = X1::f2<float>; in test_X1()
137 struct X1 { struct