Lines Matching full:void
9 - (void) also_ok;
16 - (void) ban : (int) arg, ...; // expected-note {{previous declaration is here}}
20 - (void) bar : (unsigned char)arg; // expected-note {{previous declaration is here}}
21 - (void) ok;
27 - (void) baz; // expected-warning 2 {{conflicting return type in declaration of 'baz': 'unsigned char' vs 'void'}}
28 - (void) bar : (unsigned char*)arg; // expected-warning {{conflicting parameter types in declaration of 'bar:': 'unsigned char' vs 'unsigned char *'}}
29 - (void) ok;
30 - (void) also_ok; // expected-warning {{conflicting return type in declaration of 'also_ok': 'unsigned char' vs 'void'}}
31 - (void) still_ok;
32 - (void) ban : (int) arg; // expected-warning {{conflicting variadic declaration of method and its implementation}}
36 - (void) bak;
41 - (void) baz {}
42 - (void) bar : (unsigned char*)arg {}
43 - (void) ok {}
44 - (void) also_ok {}
45 - (void) still_ok {}
46 - (void) ban : (int) arg {}
47 - (void) bak {} // expected-warning {{conflicting return type in declaration of 'bak': 'char' vs 'void'}}