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.addTransition(nullState)) { in checkPreStmt()
DDereferenceChecker.cpp203 ProgramStateRef notNullState, nullState; in checkLocation() local
204 std::tie(notNullState, nullState) = state->assume(location); in checkLocation()
207 if (nullState) { in checkLocation()
209 reportBug(nullState, S, C); in checkLocation()
216 if (ExplodedNode *N = C.generateSink(nullState)) { in checkLocation()
DMallocChecker.cpp1319 ProgramStateRef notNullState, nullState; in FreeMemAux() local
1320 std::tie(notNullState, nullState) = State->assume(location); in FreeMemAux()
1321 if (nullState && !notNullState) in FreeMemAux()