Lines Matching refs:foo_1
4 void foo_1();
24 void foo_1();
47 foo_1(); in main()
67 s.foo_1(); in main()
87 foo_1(42,); in main()
91 s.foo_1(42,); in main()
98 static void foo_1();
99 void foo_1(float);
100 static void foo_1(int);
104 Bar::foo_1(); in test()
106 b.foo_1(); in test()
111 Bar::foo_1(); in Bar2()
116 static void foo_1() {} in foo_1() function
117 void foo_1(float) {} in foo_1() function
118 static void foo_1(int) {} in foo_1() function
121 static void foo_1(T1 a, T2 b) { a + b; } in foo_1() function
124 void foo_1(T1 a, T2 b, float c) { a + b + c; } in foo_1() function
127 static void foo_1(T2 a, int b, T1 c) { a + b + c; } in foo_1() function
131 BarTemplates::foo_1(); in testTemplates()
133 b.foo_1(); in testTemplates()
138 BarTemplates::foo_1(); in Bar2Template()