Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp1273 bool SemaOpenACC::ForStmtBeginChecker::checkForCond(const Stmt *CondStmt, in checkForCond() argument
1277 if (!CondStmt) { in checkForCond()
1288 auto DiagCondVar = [this, Diag, CondStmt] { in checkForCond()
1290 SemaRef.Diag(CondStmt->getBeginLoc(), in checkForCond()
1300 if (const auto *ExprTemp = dyn_cast<ExprWithCleanups>(CondStmt)) in checkForCond()
1301 CondStmt = ExprTemp->getSubExpr(); in checkForCond()
1302 if (const auto *E = dyn_cast<Expr>(CondStmt)) in checkForCond()
1303 CondStmt = E->IgnoreParenImpCasts(); in checkForCond()
1306 if (const auto *BO = dyn_cast<BinaryOperator>(CondStmt)) { in checkForCond()
1327 } else if (const auto *CE = dyn_cast<CXXOperatorCallExpr>(CondStmt)) { in checkForCond()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenACC.h173 bool checkForCond(const Stmt *CondStmt, const ValueDecl *InitVar,