Home | History | Annotate | Download | only in Analysis

Lines Matching full:nullptr

5 // test to see if nullptr is detected as a null pointer
7 char *np = nullptr;
11 // check if comparing nullptr to nullptr is detected properly
13 char *np1 = nullptr;
21 // invoving a nullptr in a more complex operation should be cause a warning
26 char *np = nullptr;
27 // casting a nullptr to anything should be caught eventually
34 // nullptr is implemented as a zero integer value, so should be able to compare
36 char *np = nullptr;
87 typedef decltype(nullptr) nullptr_t;
89 // Create MaterializeTemporaryExpr with a nullptr inside.
90 const nullptr_t &r = nullptr;
104 decltype(nullptr) x;
108 decltype(nullptr) p;
112 invokeF(nullptr);
119 void f(decltype(nullptr) p) {
120 int *q = nullptr;
125 decltype(nullptr) returnsNullPtrType();