Home
last modified time | relevance | path

Searched refs:getThen (Results 1 – 17 of 17) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransEmptyStatementsAndDealloc.cpp105 if (!S->getThen() || !Visit(S->getThen())) in VisitIfStmt()
HDTransforms.cpp271 mark(S->getThen()); in VisitIfStmt()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDIdenticalExprChecker.cpp108 const Stmt *Stmt1 = I->getThen(); in VisitIfStmt()
403 if (!isIdenticalStmt(Ctx, IStmt1->getThen(), IStmt2->getThen(), in isIdenticalStmt()
/NextBSD/contrib/llvm/tools/clang/lib/Tooling/
HDRefactoringCallbacks.cpp69 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse(); in run()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCodeGenPGO.cpp528 CountMap[S->getThen()] = ThenCount; in VisitIfStmt()
529 Visit(S->getThen()); in VisitIfStmt()
HDCoverageMappingGen.cpp820 extendRegion(S->getThen()); in VisitIfStmt()
821 Counter OutCount = propagateCounts(ThenCount, S->getThen()); in VisitIfStmt()
HDCGStmt.cpp533 const Stmt *Executed = S.getThen(); in EmitIfStmt()
560 getProfileCount(S.getThen())); in EmitIfStmt()
567 EmitStmt(S.getThen()); in EmitIfStmt()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmtPrinter.cpp186 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) { in PrintRawIfStmt()
192 PrintStmt(If->getThen()); in PrintRawIfStmt()
HDASTImporter.cpp4702 Stmt *ToThenStmt = Importer.Import(S->getThen()); in VisitIfStmt()
4703 if (!ToThenStmt && S->getThen()) in VisitIfStmt()
HDExprConstant.cpp3374 EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case); in EvaluateStmt()
3471 if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) { in EvaluateStmt()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmt.h916 const Stmt *getThen() const { return SubExprs[THEN]; } in getThen() function
922 Stmt *getThen() { return SubExprs[THEN]; } in getThen() function
/NextBSD/contrib/llvm/tools/clang/include/clang/ASTMatchers/
HDASTMatchers.h2788 const Stmt *const Then = Node.getThen(); in AST_MATCHER_P()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDAnalysisBasedWarnings.cpp728 CreateIfFixit(S, IS, IS->getThen(), IS->getElse(), in DiagUninitUse()
HDTreeTransform.h5982 StmtResult Then = getDerived().TransformStmt(S->getThen()); in TransformIfStmt()
5994 Then.get() == S->getThen() && in TransformIfStmt()
HDSemaDeclCXX.cpp1073 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts, in CheckConstexprFunctionStmt()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTWriterStmt.cpp124 Writer.AddStmt(S->getThen()); in VisitIfStmt()
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDCFG.cpp2161 Stmt *Then = I->getThen(); in VisitIfStmt()