Home
last modified time | relevance | path

Searched refs:ShouldContinue (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DFunctionCognitiveComplexityCheck.cpp234 bool ShouldContinue = Base::TraverseStmt(Node); in traverseStmtWithIncreasedNestingLevel() local
236 return ShouldContinue; in traverseStmtWithIncreasedNestingLevel()
241 bool ShouldContinue = Base::TraverseDecl(Node); in traverseDeclWithIncreasedNestingLevel() local
243 return ShouldContinue; in traverseDeclWithIncreasedNestingLevel()
342 bool ShouldContinue = Base::TraverseBinaryOperator(Op); in TraverseBinaryOperator() local
347 return ShouldContinue; in TraverseBinaryOperator()
360 bool ShouldContinue = Base::TraverseCallExpr(Node); in TraverseCallExpr() local
364 return ShouldContinue; in TraverseCallExpr()
/llvm-project-15.0.7/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1218 bool &ShouldContinue) { in CheckForUseCFGHazard() argument
1226 ShouldContinue = true; in CheckForUseCFGHazard()
1329 bool ShouldContinue = false; in CheckForCFGHazards() local
1332 ShouldContinue); in CheckForCFGHazards()
1333 if (ShouldContinue) in CheckForCFGHazards()
/llvm-project-15.0.7/clang/lib/Index/
H A DIndexDecl.cpp782 bool ShouldContinue = Visitor.Visit(D); in indexDecl() local
783 if (!ShouldContinue) in indexDecl()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaAvailability.cpp880 bool ShouldContinue = TraverseStmt(If->getThen()); in TraverseIfStmt() local
883 return ShouldContinue && TraverseStmt(If->getElse()); in TraverseIfStmt()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DGVN.cpp2598 bool ShouldContinue = true; in runImpl() local
2612 while (ShouldContinue) { in runImpl()
2615 ShouldContinue = iterateOnFunction(F); in runImpl()
2616 Changed |= ShouldContinue; in runImpl()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp992 Value *ShouldContinue = Builder.CreateICmpNE(Loaded_MaskOut, OldVal_MaskOut); in expandPartwordCmpXchg() local
993 Builder.CreateCondBr(ShouldContinue, LoopBB, EndBB); in expandPartwordCmpXchg()