Lines Matching refs:f1
8 int &f1(T t) { in f1() function
26 int &ir = f1<X>(xd); in test_f1()
54 int* f1(int);
55 template<typename T> float* f1(T);
62 float *fp1 = x1.f1<>(17); in test_X1()
63 …float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion from 'double' to 'int' ch… in test_X1()
64 int *ip1 = x1.f1(17); in test_X1()
65 float *ip2 = x1.f1(3.14); 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()