• Home
  • Raw
  • Download

Lines Matching full:pointer

11 void f1(int *x); // expected-warning{{pointer is missing a nullability type specifier}}
12 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
13 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
43 void f18(A **); // expected-warning 2{{pointer is missing a nullability type specifier}}
44 // expected-note@-1 2 {{insert '_Nullable' if the pointer may be null}}
45 // expected-note@-2 2 {{insert '_Nonnull' if the pointer should never be null}}
46 void f19(CFErrorRefPtr error); // expected-warning{{pointer is missing a nullability type specifier…
47 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
48 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
51 void g2(int (^ *bp)(int, int)); // expected-warning{{block pointer is missing a nullability type sp…
52 // expected-note@-1{{insert '_Nullable' if the block pointer may be null}}
53 // expected-note@-2{{insert '_Nonnull' if the block pointer should never be null}}
54 // expected-warning@-3{{pointer is missing a nullability type specifier}}
55 // expected-note@-4{{insert '_Nullable' if the pointer may be null}}
56 // expected-note@-5{{insert '_Nonnull' if the pointer should never be null}}
57 void g3(block_ptr *bp); // expected-warning{{block pointer is missing a nullability type specifier}}
58 // expected-note@-1{{insert '_Nullable' if the block pointer may be null}}
59 // expected-note@-2{{insert '_Nonnull' if the block pointer should never be null}}
60 // expected-warning@-3{{pointer is missing a nullability type specifier}}
61 // expected-note@-4{{insert '_Nullable' if the pointer may be null}}
62 // expected-note@-5{{insert '_Nonnull' if the pointer should never be null}}
64 void g5(int (**fp)(int, int)); // expected-warning 2{{pointer is missing a nullability type specifi…
65 // expected-note@-1 2 {{insert '_Nullable' if the pointer may be null}}
66 // expected-note@-2 2 {{insert '_Nonnull' if the pointer should never be null}}
75 // expected-warning@-1{{pointer is missing a nullability type specifier}}
76 // expected-note@-2{{insert '_Nullable' if the pointer may be null}}
77 // expected-note@-3{{insert '_Nonnull' if the pointer should never be null}}
80 @property NSError **anError; // expected-warning 2{{pointer is missing a nullability type specifier…
81 // expected-note@-1 2 {{insert '_Nullable' if the pointer may be null}}
82 // expected-note@-2 2 {{insert '_Nonnull' if the pointer should never be null}}
90 typedef int * // expected-warning{{pointer is missing a nullability type specifier}}
91 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
92 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
114 void f20(A *a); // expected-warning{{pointer is missing a nullability type specifier}}
115 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
116 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
117 void f21(int_ptr x); // expected-warning{{pointer is missing a nullability type specifier}}
118 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
119 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
120 void f22(A_ptr y); // expected-warning{{pointer is missing a nullability type specifier}}
121 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
122 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
125 void f25(int_ptr_2 x); // expected-warning{{pointer is missing a nullability type specifier}}
126 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
127 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}
130 + (instancetype)aWithInt:(int)value; // expected-warning{{pointer is missing a nullability type spe…
131 // expected-note@-1{{insert '_Nullable' if the pointer may be null}}
132 // expected-note@-2{{insert '_Nonnull' if the pointer should never be null}}