Home
last modified time | relevance | path

Searched refs:StOutBound (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundChecker.cpp62 ProgramStateRef StOutBound = state->assumeInBound(Idx, ElementCount, false); in checkLocation() local
63 if (StOutBound && !StInBound) { in checkLocation()
64 ExplodedNode *N = C.generateErrorNode(StOutBound); in checkLocation()
H A DReturnPointerRangeChecker.cpp67 ProgramStateRef StOutBound = state->assumeInBound(Idx, ElementCount, false); in checkPreStmt() local
68 if (StOutBound && !StInBound) { in checkPreStmt()
69 ExplodedNode *N = C.generateErrorNode(StOutBound); in checkPreStmt()
H A DObjCContainersChecker.cpp141 ProgramStateRef StOutBound = State->assumeInBound(Idx, *Size, false, T); in checkPreStmt() local
142 if (StOutBound && !StInBound) { in checkPreStmt()
143 ExplodedNode *N = C.generateErrorNode(StOutBound); in checkPreStmt()
H A DUndefResultChecker.cpp57 ProgramStateRef StOutBound = state->assumeInBound(Idx, ElementCount, false); in isArrayIndexOutOfBounds() local
58 return StOutBound && !StInBound; in isArrayIndexOutOfBounds()
H A DCStringChecker.cpp355 ProgramStateRef StOutBound = state->assumeInBound(Idx, Size, false); in CheckLocation() local
356 if (StOutBound && !StInBound) { in CheckLocation()
366 emitOutOfBoundsBug(C, StOutBound, Buffer.Expression, Message); in CheckLocation()