Searched refs:OpenACCBindClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenACCClause.cpp | 23 OpenACCBindClause::classof(C) || OpenACCClauseWithExprs::classof(C) || in classof() 606 OpenACCBindClause *OpenACCBindClause::Create(const ASTContext &C, in Create() 611 void *Mem = C.Allocate(sizeof(OpenACCBindClause), alignof(OpenACCBindClause)); in Create() 612 return new (Mem) OpenACCBindClause(BeginLoc, LParenLoc, SL, EndLoc); in Create() 615 OpenACCBindClause *OpenACCBindClause::Create(const ASTContext &C, in Create() 620 void *Mem = C.Allocate(sizeof(OpenACCBindClause), alignof(OpenACCBindClause)); in Create() 621 return new (Mem) OpenACCBindClause(BeginLoc, LParenLoc, ID, EndLoc); in Create() 624 bool clang::operator==(const OpenACCBindClause &LHS, in operator ==() 625 const OpenACCBindClause &RHS) { in operator ==() 966 void OpenACCClausePrinter::VisitBindClause(const OpenACCBindClause &C) { in VisitBindClause()
|
| H A D | TextNodeDumper.cpp | 518 if (cast<OpenACCBindClause>(C)->isIdentifierArgument()) in Visit() 520 << cast<OpenACCBindClause>(C)->getIdentifierArgument()->getName() in Visit() 524 [=] { Visit(cast<OpenACCBindClause>(C)->getStringArgument()); }); in Visit()
|
| H A D | StmtProfile.cpp | 2746 void OpenACCClauseProfiler::VisitBindClause(const OpenACCBindClause &Clause) { in VisitBindClause()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenACCClause.h | 213 class OpenACCBindClause final : public OpenACCClauseWithParams { 216 OpenACCBindClause(SourceLocation BeginLoc, SourceLocation LParenLoc, in OpenACCBindClause() function 221 OpenACCBindClause(SourceLocation BeginLoc, SourceLocation LParenLoc, in OpenACCBindClause() function 231 static OpenACCBindClause *Create(const ASTContext &C, SourceLocation BeginLoc, 235 static OpenACCBindClause *Create(const ASTContext &C, SourceLocation BeginLoc, 257 bool operator==(const OpenACCBindClause &LHS, const OpenACCBindClause &RHS); 258 inline bool operator!=(const OpenACCBindClause &LHS, 259 const OpenACCBindClause &RHS) {
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenACC.cpp | 2313 auto BindItr = llvm::find_if(Clauses, llvm::IsaPred<OpenACCBindClause>); in CheckRoutineDecl() 2320 llvm::find_if(RA->Clauses, llvm::IsaPred<OpenACCBindClause>); in CheckRoutineDecl() 2322 (*cast<OpenACCBindClause>(*BindItr)) != in CheckRoutineDecl() 2323 (*cast<OpenACCBindClause>(*OtherBindItr))) { in CheckRoutineDecl() 2372 auto BindItr = llvm::find_if(Clauses, llvm::IsaPred<OpenACCBindClause>); in CheckRoutineDecl() 2382 llvm::find_if(RA->Clauses, llvm::IsaPred<OpenACCBindClause>); in CheckRoutineDecl()
|
| H A D | SemaOpenACCClause.cpp | 360 auto HasBindPred = llvm::IsaPred<OpenACCBindClause>; in CheckValidRoutineBindNewClause() 1794 return OpenACCBindClause::Create( in VisitBindClause() 1797 return OpenACCBindClause::Create( in VisitBindClause()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 1318 const OpenACCBindClause &C) { in VisitBindClause() 1321 NewClause = OpenACCBindClause::Create( in VisitBindClause() 1326 NewClause = OpenACCBindClause::Create( in VisitBindClause()
|
| H A D | TreeTransform.h | 11977 const OpenACCBindClause &C) { in VisitBindClause()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 12944 return OpenACCBindClause::Create(getContext(), BeginLoc, LParenLoc, in readOpenACCClause() 12946 return OpenACCBindClause::Create(getContext(), BeginLoc, LParenLoc, in readOpenACCClause()
|
| H A D | ASTWriter.cpp | 8923 const auto *BC = cast<OpenACCBindClause>(C); in writeOpenACCClause()
|