Home | History | Annotate | Download | only in Analysis

Lines Matching full:warning

8   *np = 0;  // expected-warning{{Dereference of null pointer}}
18 *np1 = 0; // no-warning
21 // invoving a nullptr in a more complex operation should be cause a warning
29 *ip = 0; // expected-warning{{Dereference of null pointer}}
38 *np = 0; // no-warning
41 *np = 0; // no-warning
53 delete *(p + 0); // expected-warning{{Dereference of null pointer}}
61 :"0"(*b) // expected-warning{{Dereference of null pointer}}
74 return S(*x).a; // expected-warning{{Dereference of null pointer}}
83 const S &s = S(*n); // expected-warning{{Dereference of null pointer}}
100 x->f(); // expected-warning{{Called C++ object pointer is null}}
110 invokeF(p); // expected-warning{{Function call argument is an uninit}}
115 x->f(); // expected-warning{{Called C++ object pointer is null}}
121 clang_analyzer_eval(p == 0); // expected-warning{{TRUE}}
122 clang_analyzer_eval(q == 0); // expected-warning{{TRUE}}
127 ((X *)returnsNullPtrType())->f(); // expected-warning{{Called C++ object pointer is null}}
136 *x = 3; // no-warning
141 pa->x = 0; // no-warning
146 r.x = 0; // no-warning