HomeSort by: relevance | last modified time | path
    Searched refs:checkPostStmt (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TaintTesterChecker.cpp 37 void checkPostStmt(const Expr *E, CheckerContext &C) const;
46 void TaintTesterChecker::checkPostStmt(const Expr *E,
UndefCapturedBlockVarChecker.cpp 32 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
51 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE,
AnalysisOrderChecker.cpp 67 void checkPostStmt(const CastExpr *CE, CheckerContext &C) const {
79 void checkPostStmt(const ArraySubscriptExpr *SubExpr,
90 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const {
100 void checkPostStmt(const CXXDeleteExpr *NE, CheckerContext &C) const {
110 void checkPostStmt(const CXXConstructExpr *NE, CheckerContext &C) const {
120 void checkPostStmt(const OffsetOfExpr *OOE, CheckerContext &C) const {
PointerArithChecker.cpp 67 void checkPostStmt(const CastExpr *CE, CheckerContext &C) const;
68 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const;
69 void checkPostStmt(const CallExpr *CE, CheckerContext &C) const;
217 void PointerArithChecker::checkPostStmt(const CallExpr *CE,
240 void PointerArithChecker::checkPostStmt(const CXXNewExpr *NE,
257 void PointerArithChecker::checkPostStmt(const CastExpr *CE,
CheckerDocumentation.cpp 82 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
329 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS,
ObjCContainersChecker.cpp 53 void checkPostStmt(const CallExpr *CE, CheckerContext &C) const;
86 void ObjCContainersChecker::checkPostStmt(const CallExpr *CE,
UndefResultChecker.cpp 34 void checkPostStmt(const BinaryOperator *B, CheckerContext &C) const;
76 void UndefResultChecker::checkPostStmt(const BinaryOperator *B,
BasicObjCFoundationChecks.cpp 130 void checkPostStmt(const ObjCDictionaryLiteral *DL,
132 void checkPostStmt(const ObjCArrayLiteral *AL,
319 void NilArgChecker::checkPostStmt(const ObjCArrayLiteral *AL,
327 void NilArgChecker::checkPostStmt(const ObjCDictionaryLiteral *DL,
820 void checkPostStmt(const ObjCForCollectionStmt *FCS, CheckerContext &C) const;
976 void ObjCLoopChecker::checkPostStmt(const ObjCForCollectionStmt *FCS,
1160 void checkPostStmt(const ObjCArrayLiteral *E, CheckerContext &C) const {
1163 void checkPostStmt(const ObjCDictionaryLiteral *E, CheckerContext &C) const {
1166 void checkPostStmt(const ObjCBoxedExpr *E, CheckerContext &C) const {
DynamicTypeChecker.cpp 64 void checkPostStmt(const ImplicitCastExpr *CE, CheckerContext &C) const;
154 void DynamicTypeChecker::checkPostStmt(const ImplicitCastExpr *CE,
IteratorModeling.cpp 151 void checkPostStmt(const UnaryOperator *UO, CheckerContext &C) const;
152 void checkPostStmt(const BinaryOperator *BO, CheckerContext &C) const;
153 void checkPostStmt(const CXXConstructExpr *CCE, CheckerContext &C) const;
154 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
155 void checkPostStmt(const MaterializeTemporaryExpr *MTE,
251 void IteratorModeling::checkPostStmt(const UnaryOperator *UO,
263 void IteratorModeling::checkPostStmt(const BinaryOperator *BO,
292 void IteratorModeling::checkPostStmt(const MaterializeTemporaryExpr *MTE,
ObjCSelfInitChecker.cpp 72 void checkPostStmt(const ObjCIvarRefExpr *E, CheckerContext &C) const;
196 void ObjCSelfInitChecker::checkPostStmt(const ObjCIvarRefExpr *E,
DynamicTypePropagation.cpp 104 void checkPostStmt(const CastExpr *CastE, CheckerContext &C) const;
105 void checkPostStmt(const CXXNewExpr *NewE, CheckerContext &C) const;
419 void DynamicTypePropagation::checkPostStmt(const CXXNewExpr *NewE,
613 void DynamicTypePropagation::checkPostStmt(const CastExpr *CE,
MacOSKeychainAPIChecker.cpp 60 void checkPostStmt(const CallExpr *S, CheckerContext &C) const;
273 // tracking when the second allocator is processed in checkPostStmt().
402 void MacOSKeychainAPIChecker::checkPostStmt(const CallExpr *CE,
NullabilityChecker.cpp 96 void checkPostStmt(const ExplicitCastExpr *CE, CheckerContext &C) const;
972 void NullabilityChecker::checkPostStmt(const ExplicitCastExpr *CE,
LocalizationChecker.cpp 99 void checkPostStmt(const ObjCStringLiteral *SL, CheckerContext &C) const;
994 void NonLocalizedStringChecker::checkPostStmt(const ObjCStringLiteral *SL,
MallocChecker.cpp 324 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
1152 // processed by the checkPostStmt callbacks for CXXNewExpr and
2749 void MallocChecker::checkPostStmt(const BlockExpr *BE,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountChecker.h 295 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
296 void checkPostStmt(const CastExpr *CE, CheckerContext &C) const;
298 void checkPostStmt(const ObjCArrayLiteral *AL, CheckerContext &C) const;
299 void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const;
300 void checkPostStmt(const ObjCBoxedExpr *BE, CheckerContext &C) const;
302 void checkPostStmt(const ObjCIvarRefExpr *IRE, CheckerContext &C) const;
RetainCountChecker.cpp 146 void RetainCountChecker::checkPostStmt(const BlockExpr *BE,
182 void RetainCountChecker::checkPostStmt(const CastExpr *CE,
259 void RetainCountChecker::checkPostStmt(const ObjCArrayLiteral *AL,
265 void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL,
271 void RetainCountChecker::checkPostStmt(const ObjCBoxedExpr *Ex,
285 void RetainCountChecker::checkPostStmt(const ObjCIvarRefExpr *IRE,
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
Checker.h 104 ((const CHECKER *)checker)->checkPostStmt(cast<STMT>(S), C);

Completed in 39 milliseconds