Lines Matching refs:nonnull
16 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) { in Class_init()
26 void foo(const char *str) __attribute__((nonnull("foo"))); // expected-error{{'nonnull' attribute r…
27 void bar(int i) __attribute__((nonnull(1))); // expected-warning {{'nonnull' attribute only applies…
29 void baz(__attribute__((nonnull)) const char *str);
30 void baz2(__attribute__((nonnull(1))) const char *str); // expected-warning {{'nonnull' attribute w…
31 void baz3(__attribute__((nonnull)) int x); // expected-warning {{'nonnull' attribute only applies t…
43 int i __attribute__((nonnull)); // expected-warning {{'nonnull' attribute only applies to functions…
53 void PR18795(int (*g)(const char *h, ...) __attribute__((nonnull(1))) __attribute__((nonnull))) { in PR18795()
60 void vararg1(int n, ...) __attribute__((nonnull(2)));
68 void vararg2(int n, ...) __attribute__((nonnull, nonnull, nonnull));
75 void vararg3(int n, ...) __attribute__((nonnull, nonnull(2), nonnull(3)));
83 void redecl(void *, void *) __attribute__((nonnull(1)));
84 void redecl(void *, void *) __attribute__((nonnull(2)));
112 int another_evil_nonnull_func(int* pointer, char ch, void * pv) __attribute__((nonnull(1, 3))); //…
148 void pr21668_1(__attribute__((nonnull)) const char *p, const char *s) { // expected-note {{declared… in pr21668_1()
155 void pr21668_2(__attribute__((nonnull)) const char *p) { in pr21668_2()
175 void pr30828(char *p __attribute__((nonnull)));