Lines Matching refs:deprecated
3 int f() __attribute__((deprecated)); // expected-note 2 {{'f' has been explicitly marked deprecated…
4 void g() __attribute__((deprecated));
7 extern int var __attribute__((deprecated)); // expected-note {{'var' has been explicitly marked dep…
25 int old_fn() __attribute__ ((deprecated));
35 …int x __attribute__((deprecated)); // expected-note 3 {{'x' has been explicitly marked deprecated …
44 typedef struct foo foo_dep __attribute__((deprecated)); // expected-note 12 {{'foo_dep' has been ex…
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 {{'Test20' has been explicitly marked de…
106 …test20_a __attribute__((deprecated)), // expected-note {{'test20_a' has been explicitly marked dep…
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;
124 typedef int test23_ty __attribute((deprecated));