Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOpenMP.cpp8167 } else if (auto *OASE = dyn_cast_or_null<OMPArraySectionExpr>(RefExpr)) { in getPrivateItem() local
8168 auto *Base = OASE->getBase()->IgnoreParenImpCasts(); in getPrivateItem()
9132 auto *OASE = dyn_cast<OMPArraySectionExpr>(RefExpr->IgnoreParens()); in ActOnOpenMPReductionClause() local
9135 else if (OASE) { in ActOnOpenMPReductionClause()
9136 auto BaseType = OMPArraySectionExpr::getBaseOriginalType(OASE->getBase()); in ActOnOpenMPReductionClause()
9158 if (!ASE && !OASE) { in ActOnOpenMPReductionClause()
9171 if (!ASE && !OASE && VD) { in ActOnOpenMPReductionClause()
9266 if (!ASE && !OASE) { in ActOnOpenMPReductionClause()
9279 if (!ASE && !OASE) { in ActOnOpenMPReductionClause()
9297 if (OASE || in ActOnOpenMPReductionClause()
[all …]
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp5090 auto *OASE = dyn_cast<OMPArraySectionExpr>(E); in isFinalArraySectionExpression() local
5093 if (!OASE) in isFinalArraySectionExpression()
5097 if (OASE->getColonLoc().isInvalid()) in isFinalArraySectionExpression()
5100 auto *Length = OASE->getLength(); in isFinalArraySectionExpression()
5107 OASE->getBase()->IgnoreParenImpCasts()) in isFinalArraySectionExpression()
5306 const auto *OASE = in generateInfoForComponentList() local
5309 (OASE && in generateInfoForComponentList()
5310 OMPArraySectionExpr::getBaseOriginalType(OASE) in generateInfoForComponentList()
DCGStmtOpenMP.cpp949 if (auto *OASE = dyn_cast<OMPArraySectionExpr>(IRef)) { in EmitOMPReductionClauseInit() local
950 auto *Base = OASE->getBase()->IgnoreParenImpCasts(); in EmitOMPReductionClauseInit()
957 auto OASELValueLB = EmitOMPArraySectionExpr(OASE); in EmitOMPReductionClauseInit()
959 EmitOMPArraySectionExpr(OASE, /*IsLowerBound=*/false); in EmitOMPReductionClauseInit()
/external/clang/lib/AST/
DExpr.cpp3891 while (auto *OASE = dyn_cast<OMPArraySectionExpr>(Base->IgnoreParens())) { in getBaseOriginalType() local
3892 Base = OASE->getBase(); in getBaseOriginalType()