Home | History | Annotate | Download | only in Analysis

Lines Matching full:nullptr

3 // test to see if nullptr is detected as a null pointer
5 char *np = nullptr;
9 // check if comparing nullptr to nullptr is detected properly
11 char *np1 = nullptr;
19 // invoving a nullptr in a more complex operation should be cause a warning
24 char *np = nullptr;
25 // casting a nullptr to anything should be caught eventually
32 // nullptr is implemented as a zero integer value, so should be able to compare
34 char *np = nullptr;
85 typedef decltype(nullptr) nullptr_t;
87 // Create MaterializeTemporaryExpr with a nullptr inside.
88 const nullptr_t &r = nullptr;