Home
last modified time | relevance | path

Searched refs:IfStmt (Results 1 – 25 of 28) sorted by relevance

12

/external/clang/test/Analysis/
Dtraversal-algorithm.mm198 // DFS-next:10 IfStmt
199 // DFS-next:16 IfStmt
200 // DFS-next:22 IfStmt
203 // DFS-next:22 IfStmt
206 // DFS-next:11 IfStmt
207 // DFS-next:22 IfStmt
210 // DFS-next:22 IfStmt
/external/clang/lib/Tooling/
DRefactoringCallbacks.cpp68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) { in run()
/external/clang/include/clang/Analysis/Visitors/
DCFGRecStmtVisitor.h42 CONDVAR_CASE(IfStmt) in VisitConditionVariableInit()
/external/clang/lib/AST/
DParentMap.cpp128 return DirectChild == cast<IfStmt>(P)->getCond(); in isConsumedExpr()
DStmt.cpp844 IfStmt::IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond, in IfStmt() function in IfStmt
854 VarDecl *IfStmt::getConditionVariable() const { in getConditionVariable()
862 void IfStmt::setConditionVariable(ASTContext &C, VarDecl *V) { in setConditionVariable()
DStmtPrinter.cpp65 void PrintRawIfStmt(IfStmt *If);
188 void StmtPrinter::PrintRawIfStmt(IfStmt *If) { in PrintRawIfStmt()
210 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) { in PrintRawIfStmt()
220 void StmtPrinter::VisitIfStmt(IfStmt *If) { in VisitIfStmt()
DStmtProfile.cpp117 void StmtProfiler::VisitIfStmt(const IfStmt *S) { in VisitIfStmt()
/external/clang/lib/ARCMigrate/
DTransEmptyStatementsAndDealloc.cpp98 bool VisitIfStmt(IfStmt *S) { in VisitIfStmt()
DTransforms.cpp257 bool VisitIfStmt(IfStmt *S) { in VisitIfStmt()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h658 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt;
1819 (llvm::is_base_of<IfStmt, NodeType>::value) || in AST_POLYMORPHIC_MATCHER_P()
1838 AST_MATCHER_P(IfStmt, hasConditionVariableStatement, in AST_MATCHER_P() argument
/external/clang/include/clang/Basic/
DStmtNodes.td16 def IfStmt : Stmt;
/external/clang/include/clang/AST/
DStmt.h846 class IfStmt : public Stmt {
854 IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
858 explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { } in IfStmt() function
909 static bool classof(const IfStmt *) { return true; } in classof() argument
DRecursiveASTVisitor.h1879 DEF_TRAVERSE_STMT(IfStmt, { })
/external/clang/docs/analyzer/
Ddebug-checks.txt18 … the name of each branch statement encountered during a path traversal ("IfStmt", "WhileStmt", etc…
/external/clang/lib/Analysis/
DCFG.cpp341 CFGBlock *VisitIfStmt(IfStmt *I);
1094 return VisitIfStmt(cast<IfStmt>(S)); in Visit()
1661 CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { in VisitIfStmt()
3507 const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); in StmtPrinterHelper()
3599 void VisitIfStmt(IfStmt *I) { in VisitIfStmt()
4014 E = cast<IfStmt>(Terminator)->getCond(); in getTerminatorCondition()
/external/clang/lib/StaticAnalyzer/Core/
DCoreEngine.cpp397 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
DBugReporterVisitors.cpp688 Cond = cast<IfStmt>(Term)->getCond(); in VisitTerminator()
DBugReporter.cpp341 if (cast<IfStmt>(Parent)->getCond() != S) in getEnclosingStmtLocation()
/external/v8/tools/gcmole/
Dgcmole.cc896 VISIT(IfStmt); in VisitStmt()
1051 DECL_VISIT_STMT(IfStmt) { in DECL_VISIT_STMT() argument
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp526 const IfStmt *IS = cast<IfStmt>(Term); in DiagUninitUse()
/external/clang/lib/CodeGen/
DCGStmt.cpp127 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break; in EmitStmt()
375 void CodeGenFunction::EmitIfStmt(const IfStmt &S) { in EmitIfStmt()
DCodeGenFunction.h1992 void EmitIfStmt(const IfStmt &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp176 void ASTStmtReader::VisitIfStmt(IfStmt *S) { in VisitIfStmt()
1660 S = new (Context) IfStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp119 void ASTStmtWriter::VisitIfStmt(IfStmt *S) { in VisitIfStmt()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h1805 DEF_TRAVERSE_STMT(IfStmt, { })

12