Home | History | Annotate | Download | only in over.over

Lines Matching refs:f0

3 template<typename T> T f0(T);
4 int f0(int);
8 int (*f0)(int);
13 int (*f0a)(int) = f0;
14 int (*f0b)(int) = &f0;
15 int (*f0c)(int) = (f0);
16 float (*f0d)(float) = f0;
17 float (*f0e)(float) = &f0;
18 float (*f0f)(float) = (f0);
19 int (&f0g)(int) = f0;
20 int (&f0h)(int) = (f0);
21 float (&f0i)(float) = f0;
22 float (&f0j)(float) = (f0);
23 S s = { f0, f0 };
31 f0a = f0;
32 f0a = &f0;
33 f0a = (f0);
34 f0b = f0;
35 f0b = &f0;
36 f0b = (f0);
43 eat_f0(f0, f0, f0, f0);
44 eat_f0(&f0, &f0, (f0), (f0));
55 x + f0;
56 x + &f0;
57 x - f0;
58 x - &f0;
59 x * f0;
60 x * (f0);
61 x / f0;
62 x / (f0);
66 int (*test_return_f0_a())(int) { return f0; }
67 int (*test_return_f0_b())(int) { return &f0; }
68 int (*test_return_f0_c())(int) { return (f0); }
69 float (*test_return_f0_d())(float) { return f0; }
70 float (*test_return_f0_e())(float) { return &f0; }
71 float (*test_return_f0_f())(float) { return (f0); }
75 (void)((int (*)(int))f0);
76 (void)((int (*)(int))&f0);
77 (void)((int (*)(int))(f0));
78 (void)((float (*)(float))f0);
79 (void)((float (*)(float))&f0);
80 (void)((float (*)(float))(f0));
89 Y0<f0> y0;
90 Y0<&f0> y0a;
91 Y1<f0> y1;
92 Y1<&f0> y1a;
93 Y2<f0> y2;
94 Y3<f0> y3;