Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DErrnoChecker.cpp72 bool CondFound = false; in isInCondition() local
73 while (S && !CondFound) { in isInCondition()
82 CondFound = (S == cast<IfStmt>(ParentS)->getCond()); in isInCondition()
85 CondFound = (S == cast<ForStmt>(ParentS)->getCond()); in isInCondition()
88 CondFound = (S == cast<DoStmt>(ParentS)->getCond()); in isInCondition()
91 CondFound = (S == cast<WhileStmt>(ParentS)->getCond()); in isInCondition()
94 CondFound = (S == cast<SwitchStmt>(ParentS)->getCond()); in isInCondition()
97 CondFound = (S == cast<ConditionalOperator>(ParentS)->getCond()); in isInCondition()
100 CondFound = (S == cast<BinaryConditionalOperator>(ParentS)->getCommon()); in isInCondition()
107 return CondFound; in isInCondition()