HomeSort by: relevance | last modified time | path
    Searched refs:OMPArraySectionExpr (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprOpenMP.h 56 class OMPArraySectionExpr : public Expr {
64 OMPArraySectionExpr(Expr *Base, Expr *LowerBound, Expr *Length, Expr *Stride,
79 explicit OMPArraySectionExpr(EmptyShell Shell)
ComputeDependence.h 91 class OMPArraySectionExpr;
180 ExprDependence computeDependence(OMPArraySectionExpr *E);
RecursiveASTVisitor.h 2574 DEF_TRAVERSE_STMT(OMPArraySectionExpr, {})
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 162 const OMPArraySectionExpr *AE = cast<OMPArraySectionExpr>(S);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 2078 isa<OMPArraySectionExpr>(EI->getAssociatedExpression()) ||
3591 (isa<OMPArraySectionExpr>(
3763 if (!((isa<OMPArraySectionExpr>(
5000 } else if (auto *OASE = dyn_cast_or_null<OMPArraySectionExpr>(RefExpr)) {
5002 while (auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
5602 const auto *OASE = cast<OMPArraySectionExpr>(E->IgnoreParenImpCasts());
5604 OMPArraySectionExpr::getBaseOriginalType(OASE->getBase());
16253 ASTContext &Context, const OMPArraySectionExpr *OASE, bool &SingleElement,
16280 while (const auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base)) {
16471 auto *OASE = dyn_cast<OMPArraySectionExpr>(RefExpr->IgnoreParens())
    [all...]
SemaExpr.cpp 4932 return new (Context) OMPArraySectionExpr(
4938 QualType OriginalTy = OMPArraySectionExpr::getBaseOriginalType(Base);
5067 return new (Context) OMPArraySectionExpr(
SemaInit.cpp 7171 cast<OMPArraySectionExpr>(Init)->getBase(),
TreeTransform.h 10589 TreeTransform<Derived>::TransformOMPArraySectionExpr(OMPArraySectionExpr *E) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp 399 ExprDependence clang::computeDependence(OMPArraySectionExpr *E) {
StmtPrinter.cpp 1319 void StmtPrinter::VisitOMPArraySectionExpr(OMPArraySectionExpr *Node) {
StmtProfile.cpp 1290 void StmtProfiler::VisitOMPArraySectionExpr(const OMPArraySectionExpr *S) {
Expr.cpp 4691 QualType OMPArraySectionExpr::getBaseOriginalType(const Expr *Base) {
4693 while (auto *OASE = dyn_cast<OMPArraySectionExpr>(Base->IgnoreParens())) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 769 if (const auto *OASE = dyn_cast<OMPArraySectionExpr>(E))
829 bool AsArraySection = isa<OMPArraySectionExpr>(ClausesData[N].Ref);
986 if (const auto *OASE = dyn_cast<OMPArraySectionExpr>(Ref)) {
988 while (const auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
4155 dyn_cast<OMPArraySectionExpr>(E->IgnoreParenImpCasts())) {
7291 if (const auto *OAE = dyn_cast<OMPArraySectionExpr>(E)) {
7292 QualType BaseTy = OMPArraySectionExpr::getBaseOriginalType(
7398 const auto *OASE = dyn_cast<OMPArraySectionExpr>(E);
7414 QualType BaseQTy = OMPArraySectionExpr::getBaseOriginalType(
7635 const auto *OASE = dyn_cast<OMPArraySectionExpr>(AssocExpr)
    [all...]
CGExpr.cpp 1394 return EmitOMPArraySectionExpr(cast<OMPArraySectionExpr>(E));
3889 if (auto *ASE = dyn_cast<OMPArraySectionExpr>(Base->IgnoreParenImpCasts())) {
3922 LValue CodeGenFunction::EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
3924 QualType BaseTy = OMPArraySectionExpr::getBaseOriginalType(E->getBase());
CGOpenMPRuntimeGPU.cpp 126 } else if (auto *OASE = dyn_cast<OMPArraySectionExpr>(RefExpr)) {
128 while (const auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
CGStmtOpenMP.cpp 1255 bool isaOMPArraySectionExpr = isa<OMPArraySectionExpr>(IRef);
6500 while (const auto *OASE = dyn_cast<OMPArraySectionExpr>(Base))
CodeGenFunction.h 3848 LValue EmitOMPArraySectionExpr(const OMPArraySectionExpr *E,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 944 void ASTStmtReader::VisitOMPArraySectionExpr(OMPArraySectionExpr *E) {
2883 S = new (Context) OMPArraySectionExpr(Empty);
ASTWriterStmt.cpp 802 void ASTStmtWriter::VisitOMPArraySectionExpr(OMPArraySectionExpr *E) {

Completed in 185 milliseconds