Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:fv

9 void test_f(int iv, float fv) {
10 float* fp = f(fv);
20 void test_g(int iv, float fv) {
21 int* ip1 = g(iv, fv, 0);
23 double* dp1 = g(iv, fv, fv);
25 char* cp2 = g(0, 0, 0, iv, fv);
27 double* dp2 = g(0, fv, 1.5); // expected-error {{call to 'g' is ambiguous}}
33 void test_h(float fv, unsigned char cv) {
34 double* dp = h(fv);