Home | History | Annotate | Download | only in basic.lookup.argdep

Lines Matching full:void

8   void f(X);
9 void g(X); // expected-note{{candidate function}}
11 void test_multiadd(X x) {
12 (void)(x + x);
20 void f(); // expected-note 2 {{'f' declared here}}
22 void test_operator_adl(N::X x, M::Y y) {
23 (void)(x + x);
24 (void)(y + y);
27 void test_func_adl(N::X x, M::Y y) {
35 void test_multiadd2(X x) {
36 (void)(x + x);
41 void test_func_adl_only(N::X x) {
48 void test(N::X x) {
58 void test_operator_name_adl(N::X x) {
59 (void)operator+(x, x);
67 void test_global_scope_adl(Z z) {
78 void h(L); // expected-note{{candidate function}}
81 void h(L); // expected-note{{candidate function}}
82 void test_transparent_context_adl(L l) {
92 void foo(void (*)(A&));
94 void bar(NS::A& a);
96 void test() {
102 void test6_function(__builtin_va_list &argv);
104 void test6_function(__builtin_va_list &argv);
106 void test() {