Lines Matching refs:_Nonnull
17 int *_Nonnull triggerConsistencyWarnings;
44 int ints[_Nonnull],
45 void *ptrs[_Nonnull], // expected-warning {{pointer is missing a nullability type specifier}}
48 …void **nestedPtrs[_Nonnull]); // expected-warning 2 {{pointer is missing a nullability type specif…
52 int ints[_Nonnull],
53 void * _Nullable ptrs[_Nonnull],
54 void * _Nullable * _Nullable nestedPtrs[_Nonnull]);
73 pointer_like_or<va_list, void*>::type _Nonnull x); // no errors
82 void nestedArraysOK(int x[_Nonnull 5][1]) {}
99 INTS _Nonnull x2,
100 _Nonnull INTS x3,
107 INTS y2[_Nonnull 2]);
134 int ints[_Nonnull],
135 void * _Nullable ptrs[_Nonnull],
136 void * _Nullable * _Nullable nestedPtrs[_Nonnull]);
138 int ints[_Nonnull],
139 void * ptrs[_Nonnull], // backwards-compatibility
140 void * _Nullable * _Nullable nestedPtrs[_Nonnull]);