HomeSort by relevance Sort by last modified time
    Searched refs:CFGStmt (Results 1 - 20 of 20) sorted by null

  /external/clang/lib/Analysis/
CFGStmtMap.cpp 53 Optional<CFGStmt> CS = CE.getAs<CFGStmt>();
LiveVariables.cpp 462 if (!elem.getAs<CFGStmt>())
465 const Stmt *S = elem.castAs<CFGStmt>().getStmt();
517 if (Optional<CFGStmt> cs = bi->getAs<CFGStmt>()) {
ReachableCode.cpp 70 if (Optional<CFGStmt> CS = I->getAs<CFGStmt>()) {
416 if (Optional<CFGStmt> CS = I->getAs<CFGStmt>()) {
ThreadSafety.cpp 740 CFGStmt CS = BI->castAs<CFGStmt>();
785 if (Optional<CFGStmt> CS = BI->getAs<CFGStmt>()) {
798 if (Optional<CFGStmt> CS = BI->getAs<CFGStmt>()) {
    [all...]
Consumed.cpp 61 if (Optional<CFGStmt> CS = B.getAs<CFGStmt>())
80 if (Optional<CFGStmt> CS = BI->getAs<CFGStmt>())
    [all...]
UninitializedValues.cpp 824 if (Optional<CFGStmt> cs = I->getAs<CFGStmt>())
CFG.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 126 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) {
UnreachableCodeChecker.cpp 137 if (Optional<CFGStmt> S = (*ci).getAs<CFGStmt>())
198 if (Optional<CFGStmt> S = I->getAs<CFGStmt>())
MallocOverflowSecurityChecker.cpp 308 if (Optional<CFGStmt> CS = bi->getAs<CFGStmt>()) {
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 116 if (Optional<CFGStmt> StmtElem = Elem->getAs<CFGStmt>()) {
164 if (Optional<CFGStmt> StmtElem = Elem.getAs<CFGStmt>()) {
183 assert(isa<CXXConstructExpr>(((*B)[currStmtIdx]).castAs<CFGStmt>().getStmt()));
224 if (Optional<CFGStmt> PrevStmtElem = Previous.getAs<CFGStmt>()) {
CoreEngine.cpp 558 CFGStmt CS = (*Block)[Idx].castAs<CFGStmt>();
ExprEngineC.cpp 581 CFGStmt Elem = SrcBlock->rbegin()->castAs<CFGStmt>();
692 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) {
    [all...]
ExprEngine.cpp 296 ProcessStmt(const_cast<Stmt*>(E.castAs<CFGStmt>().getStmt()), Pred);
316 const CFGStmt S,
424 void ExprEngine::ProcessStmt(const CFGStmt S,
    [all...]
PathDiagnostic.cpp 550 return PathDiagnosticLocation(Source.castAs<CFGStmt>().getStmt(),
    [all...]
BugReporter.cpp     [all...]
  /external/clang/include/clang/Analysis/
CFG.h 115 class CFGStmt : public CFGElement {
117 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
125 CFGStmt() {}
656 Elements.push_back(CFGStmt(statement), C);
920 if (Optional<CFGStmt> stmt = BI->getAs<CFGStmt>())
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 174 const CallExpr *CE = dyn_cast<CallExpr>(B.getAs<CFGStmt>()->getStmt());
357 if (ri->getAs<CFGStmt>())
371 CFGStmt CS = ri->castAs<CFGStmt>();
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 190 V.handleStatement(BI.castAs<CFGStmt>().getStmt());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 197 void ProcessStmt(const CFGStmt S, ExplodedNode *Pred);
521 const Expr *NodeEx, /* Eventually will be a CFGStmt */
551 const Expr *NodeEx, /* Eventually will be a CFGStmt */
562 const Stmt *NodeEx, /* This will eventually be a CFGStmt */

Completed in 753 milliseconds