Lines Matching refs:_Nullable
16 typedef int * _Nullable nullable_int_ptr;
23 typedef int * _Nonnull _Nullable conflicting_1; // expected-error{{nullability specifier '_Nullable…
32 typedef nonnull_int_ptr _Nullable conflicting_2; // expected-error{{nullability specifier '_Nullabl…
36 typedef nonnull_int_ptr_typedef _Nullable conflicting_2; // expected-error{{nullability specifier '…
51 typedef int _Nullable * nullable_int_ptr_2;
54 typedef _Nonnull int * * _Nullable nonnull_int_ptr_ptr_1;
77 typedef _Nonnull int * _Nullable * conflict_int_ptr_ptr_2; // expected-error{{nullability specifie…
84 typedef int * _Nullable ambiguous_int_ptr;
99 int * _Nullable * _Nonnull iptrptr2; in printing_nullability()
124 void nullable_to_nonnull(_Nullable int *ptr) { in nullable_to_nonnull()
136 int * _Nullable nullableP; in conditional_expr()
162 typedef IntP _Nullable NullableIntP0; in conditional_expr()
163 typedef NullableIntP0 _Nullable NullableIntP1; in conditional_expr()
177 int * _Nullable nullableP; in binary_conditional_expr()
203 void *ptrs[_Nullable],
204 void **nestedPtrs[_Nullable],
205 void * _Null_unspecified * _Nonnull nestedPtrs2[_Nullable],
211 void ** _Nullable reference);
216 int notInFunction[_Nullable 3]; // expected-error {{nullability specifier '_Nullable' cannot be app…
240 void (^nested)(void *_Nullable x[_Nonnull 2]) = ^(void *_Nullable x[_Nonnull 2]) {}; in arraysInBlocks()