Home
last modified time | relevance | path

Searched refs:nullState (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DObjCAtSyncChecker.cpp62 ProgramStateRef notNullState, nullState; in checkPreStmt() local
63 std::tie(notNullState, nullState) = state->assume(V.castAs<DefinedSVal>()); in checkPreStmt()
65 if (nullState) { in checkPreStmt()
69 if (ExplodedNode *N = C.generateNonFatalErrorNode(nullState)) { in checkPreStmt()
DDereferenceChecker.cpp215 ProgramStateRef notNullState, nullState; in checkLocation() local
216 std::tie(notNullState, nullState) = state->assume(location); in checkLocation()
219 if (nullState) { in checkLocation()
223 reportBug(nullState, expr, C); in checkLocation()
231 if (ExplodedNode *N = C.generateSink(nullState, C.getPredecessor())) { in checkLocation()
DMallocChecker.cpp1331 ProgramStateRef notNullState, nullState; in FreeMemAux() local
1332 std::tie(notNullState, nullState) = State->assume(location); in FreeMemAux()
1333 if (nullState && !notNullState) in FreeMemAux()