Searched refs:OpenACCIfClause (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenACCClause.cpp | 41 return OpenACCIfClause::classof(C) || OpenACCSelfClause::classof(C); in classof() 59 OpenACCIfClause *OpenACCIfClause::Create(const ASTContext &C, in Create() 64 void *Mem = C.Allocate(sizeof(OpenACCIfClause), alignof(OpenACCIfClause)); in Create() 65 return new (Mem) OpenACCIfClause(BeginLoc, LParenLoc, ConditionExpr, EndLoc); in Create() 68 OpenACCIfClause::OpenACCIfClause(SourceLocation BeginLoc, in OpenACCIfClause() function in OpenACCIfClause 84 void *Mem = C.Allocate(sizeof(OpenACCIfClause), alignof(OpenACCIfClause)); in Create() 377 void OpenACCClausePrinter::VisitIfClause(const OpenACCIfClause &C) { in VisitIfClause()
|
H A D | StmtProfile.cpp | 2500 void OpenACCClauseProfiler::VisitIfClause(const OpenACCIfClause &Clause) { in VisitIfClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenACCClause.h | 349 class OpenACCIfClause : public OpenACCClauseWithCondition { 351 OpenACCIfClause(SourceLocation BeginLoc, SourceLocation LParenLoc, 358 static OpenACCIfClause *Create(const ASTContext &C, SourceLocation BeginLoc,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenACC.cpp | 545 return OpenACCIfClause::Create(Ctx, Clause.getBeginLoc(), in VisitIfClause() 573 llvm::find_if(ExistingClauses, llvm::IsaPred<OpenACCIfClause>); in VisitSelfClause()
|
H A D | TreeTransform.h | 11252 void OpenACCClauseTransform<Derived>::VisitIfClause(const OpenACCIfClause &C) { in VisitIfClause() 11263 NewClause = OpenACCIfClause::Create( in VisitIfClause()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 7935 const auto *IC = cast<OpenACCIfClause>(C); in writeOpenACCClause()
|
H A D | ASTReader.cpp | 11898 return OpenACCIfClause::Create(getContext(), BeginLoc, LParenLoc, CondExpr, in readOpenACCClause()
|