/external/clang/test/Analysis/ |
D | traversal-algorithm.mm | 198 // 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/ |
D | RefactoringCallbacks.cpp | 68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) { in run()
|
/external/clang/include/clang/Analysis/Visitors/ |
D | CFGRecStmtVisitor.h | 42 CONDVAR_CASE(IfStmt) in VisitConditionVariableInit()
|
/external/clang/lib/AST/ |
D | ParentMap.cpp | 128 return DirectChild == cast<IfStmt>(P)->getCond(); in isConsumedExpr()
|
D | Stmt.cpp | 844 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()
|
D | StmtPrinter.cpp | 65 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()
|
D | StmtProfile.cpp | 117 void StmtProfiler::VisitIfStmt(const IfStmt *S) { in VisitIfStmt()
|
/external/clang/lib/ARCMigrate/ |
D | TransEmptyStatementsAndDealloc.cpp | 98 bool VisitIfStmt(IfStmt *S) { in VisitIfStmt()
|
D | Transforms.cpp | 257 bool VisitIfStmt(IfStmt *S) { in VisitIfStmt()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 658 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/ |
D | StmtNodes.td | 16 def IfStmt : Stmt;
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 846 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
|
D | RecursiveASTVisitor.h | 1879 DEF_TRAVERSE_STMT(IfStmt, { })
|
/external/clang/docs/analyzer/ |
D | debug-checks.txt | 18 … the name of each branch statement encountered during a path traversal ("IfStmt", "WhileStmt", etc…
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 341 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/ |
D | CoreEngine.cpp | 397 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred); in HandleBlockExit()
|
D | BugReporterVisitors.cpp | 688 Cond = cast<IfStmt>(Term)->getCond(); in VisitTerminator()
|
D | BugReporter.cpp | 341 if (cast<IfStmt>(Parent)->getCond() != S) in getEnclosingStmtLocation()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 896 VISIT(IfStmt); in VisitStmt() 1051 DECL_VISIT_STMT(IfStmt) { in DECL_VISIT_STMT() argument
|
/external/clang/lib/Sema/ |
D | AnalysisBasedWarnings.cpp | 526 const IfStmt *IS = cast<IfStmt>(Term); in DiagUninitUse()
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 127 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break; in EmitStmt() 375 void CodeGenFunction::EmitIfStmt(const IfStmt &S) { in EmitIfStmt()
|
D | CodeGenFunction.h | 1992 void EmitIfStmt(const IfStmt &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 176 void ASTStmtReader::VisitIfStmt(IfStmt *S) { in VisitIfStmt() 1660 S = new (Context) IfStmt(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 119 void ASTStmtWriter::VisitIfStmt(IfStmt *S) { in VisitIfStmt()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 1805 DEF_TRAVERSE_STMT(IfStmt, { })
|