Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4549 Expr *Depobj = nullptr; variable
4566 void setDepobj(Expr *E) { Depobj = E; } in setDepobj()
4581 SourceLocation EndLoc, Expr *Depobj);
4589 Expr *getDepobj() { return Depobj; } in getDepobj()
4590 const Expr *getDepobj() const { return Depobj; } in getDepobj()
4596 return child_range(reinterpret_cast<Stmt **>(&Depobj), in children()
4597 reinterpret_cast<Stmt **>(&Depobj) + 1); in children()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp787 if (const Expr *Depobj = C->getDepobj()) in VisitOMPDepobjClause() local
788 Profiler->VisitStmt(Depobj); in VisitOMPDepobjClause()
H A DOpenMPClause.cpp1015 Expr *Depobj) { in Create() argument
1017 Clause->setDepobj(Depobj); in Create()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp18113 OMPClause *Sema::ActOnOpenMPDepobjClause(Expr *Depobj, SourceLocation StartLoc, in ActOnOpenMPDepobjClause() argument
18116 if (!Depobj) in ActOnOpenMPDepobjClause()
18123 if (!Depobj->isTypeDependent() && !Depobj->isValueDependent() && in ActOnOpenMPDepobjClause()
18124 !Depobj->isInstantiationDependent() && in ActOnOpenMPDepobjClause()
18125 !Depobj->containsUnexpandedParameterPack() && in ActOnOpenMPDepobjClause()
18129 Diag(Depobj->getExprLoc(), diag::err_omp_expected_omp_depend_t_lvalue) in ActOnOpenMPDepobjClause()
18130 << 0 << Depobj->getType() << Depobj->getSourceRange(); in ActOnOpenMPDepobjClause()
18133 if (!Depobj->isLValue()) { in ActOnOpenMPDepobjClause()
18134 Diag(Depobj->getExprLoc(), diag::err_omp_expected_omp_depend_t_lvalue) in ActOnOpenMPDepobjClause()
18135 << 1 << Depobj->getSourceRange(); in ActOnOpenMPDepobjClause()
[all …]
H A DTreeTransform.h1887 OMPClause *RebuildOMPDepobjClause(Expr *Depobj, SourceLocation StartLoc, in RebuildOMPDepobjClause() argument
1890 return getSema().ActOnOpenMPDepobjClause(Depobj, StartLoc, LParenLoc, in RebuildOMPDepobjClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11229 OMPClause *ActOnOpenMPDepobjClause(Expr *Depobj, SourceLocation StartLoc,