Lines Matching refs:deprecated
3 int f() __attribute__((deprecated)); // expected-note 2 {{declared here}}
4 void g() __attribute__((deprecated));
7 extern int var __attribute__((deprecated)); // expected-note {{declared here}}
25 int old_fn() __attribute__ ((deprecated));
35 int x __attribute__((deprecated)); // expected-note 3 {{declared here}}
44 typedef struct foo foo_dep __attribute__((deprecated)); // expected-note 12 {{declared here}}
47 struct __attribute__((deprecated,
55 foo_dep *test4 __attribute__((deprecated));
56 struct bar_dep *test5 __attribute__((deprecated));
60 typedef foo_dep test7(struct bar_dep*) __attribute__((deprecated));
72 foo_dep *test9(void) __attribute__((deprecated));
82 void test10(void) __attribute__((deprecated));
90 char test11[sizeof(foo_dep)] __attribute__((deprecated));
93 int test13(foo_dep *foo) __attribute__((deprecated));
97 unsigned long test16 __attribute__((deprecated))
101 test18 __attribute__((deprecated)),
105 enum __attribute__((deprecated)) Test20 { // expected-note {{declared here}}
106 test20_a __attribute__((deprecated)), // expected-note {{declared here}}
118 foo_dep a __attribute((deprecated));
120 foo_dep c, d __attribute((deprecated)); // expected-warning {{'foo_dep' is deprecated}}
121 __attribute((deprecated)) foo_dep e, f;