Searched refs:OMPSharedClause (Results 1 – 11 of 11) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | OpenMPClause.h | 1353 class OMPSharedClause : public OMPVarListClause<OMPSharedClause> { 1361 OMPSharedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPSharedClause() function 1363 : OMPVarListClause<OMPSharedClause>(OMPC_shared, StartLoc, LParenLoc, in OMPSharedClause() 1370 explicit OMPSharedClause(unsigned N) in OMPSharedClause() function 1371 : OMPVarListClause<OMPSharedClause>(OMPC_shared, SourceLocation(), in OMPSharedClause() 1384 static OMPSharedClause *Create(const ASTContext &C, SourceLocation StartLoc, 1392 static OMPSharedClause *CreateEmpty(const ASTContext &C, unsigned N);
|
| HD | DataRecursiveASTVisitor.h | 2576 bool RecursiveASTVisitor<Derived>::VisitOMPSharedClause(OMPSharedClause *C) { in VisitOMPSharedClause()
|
| HD | RecursiveASTVisitor.h | 2608 bool RecursiveASTVisitor<Derived>::VisitOMPSharedClause(OMPSharedClause *C) { in VisitOMPSharedClause()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Stmt.cpp | 1303 OMPSharedClause *OMPSharedClause::Create(const ASTContext &C, in Create() 1308 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPSharedClause), in Create() 1311 OMPSharedClause *Clause = new (Mem) OMPSharedClause(StartLoc, LParenLoc, in Create() 1317 OMPSharedClause *OMPSharedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 1319 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPSharedClause), in CreateEmpty() 1322 return new (Mem) OMPSharedClause(N); in CreateEmpty()
|
| HD | StmtProfile.cpp | 363 void OMPClauseProfiler::VisitOMPSharedClause(const OMPSharedClause *C) { in VisitOMPSharedClause()
|
| HD | StmtPrinter.cpp | 726 void OMPClausePrinter::VisitOMPSharedClause(OMPSharedClause *Node) { in VisitOMPSharedClause()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | OpenMPKinds.def | 113 OPENMP_CLAUSE(shared, OMPSharedClause)
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 1768 C = OMPSharedClause::CreateEmpty(Context, Record[Idx++]); in readClause() 1924 void OMPClauseReader::VisitOMPSharedClause(OMPSharedClause *C) { in VisitOMPSharedClause()
|
| HD | ASTWriterStmt.cpp | 1824 void OMPClauseWriter::VisitOMPSharedClause(OMPSharedClause *C) { in VisitOMPSharedClause()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaOpenMP.cpp | 5768 return OMPSharedClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars); in ActOnOpenMPSharedClause()
|
| HD | TreeTransform.h | 7336 TreeTransform<Derived>::TransformOMPSharedClause(OMPSharedClause *C) { in TransformOMPSharedClause()
|