Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp1305 const ValueDecl *CondVar = nullptr; in checkForCond() local
1322 CondVar = getDeclFromExpr(BO->getLHS()); in checkForCond()
1323 if (!CondVar || in checkForCond()
1324 (InitVar && CondVar->getCanonicalDecl() != InitVar->getCanonicalDecl())) in checkForCond()
1325 CondVar = getDeclFromExpr(BO->getRHS()); in checkForCond()
1335 CondVar = getDeclFromExpr(CE->getArg(0)); in checkForCond()
1336 if (!CondVar || in checkForCond()
1338 CondVar->getCanonicalDecl() != InitVar->getCanonicalDecl() && in checkForCond()
1340 CondVar = getDeclFromExpr(CE->getArg(1)); in checkForCond()
1345 if (!CondVar) in checkForCond()
[all …]
H A DSemaStmt.cpp2146 if (const Stmt *CondVar = S->getConditionVariableDeclStmt()) in VisitSwitchStmt() local
2147 Visit(CondVar); in VisitSwitchStmt()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2407 void setConditionVariableDeclStmt(DeclStmt *CondVar) {
2409 getTrailingObjects<Stmt *>()[varOffset()] = CondVar;
2638 void setConditionVariableDeclStmt(DeclStmt *CondVar) {
2640 getTrailingObjects()[varOffset()] = CondVar;
2800 void setConditionVariableDeclStmt(DeclStmt *CondVar) {
2802 getTrailingObjects()[varOffset()] = CondVar;
2929 void setConditionVariableDeclStmt(DeclStmt *CondVar) {
2930 SubExprs[CONDVAR] = CondVar;
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DCompiler.cpp5671 unsigned CondVar = in visitSwitchStmt() local
5685 if (!this->emitSetLocal(CondT, CondVar, S)) in visitSwitchStmt()
5705 if (!this->emitGetLocal(CondT, CondVar, CS)) in visitSwitchStmt()