Searched refs:OMPCopyinClause (Results 1 – 12 of 12) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | OpenMPClause.h | 1856 class OMPCopyinClause : public OMPVarListClause<OMPCopyinClause> { 1878 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyinClause() function 1880 : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, StartLoc, LParenLoc, in OMPCopyinClause() 1887 explicit OMPCopyinClause(unsigned N) in OMPCopyinClause() function 1888 : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, SourceLocation(), in OMPCopyinClause() 1955 static OMPCopyinClause * 1964 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N);
|
| HD | DataRecursiveASTVisitor.h | 2606 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| HD | RecursiveASTVisitor.h | 2638 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Stmt.cpp | 1400 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 1407 void OMPCopyinClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 1414 void OMPCopyinClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 1422 OMPCopyinClause *OMPCopyinClause::Create( in Create() 1426 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPCopyinClause), in Create() 1429 OMPCopyinClause *Clause = new (Mem) OMPCopyinClause(StartLoc, LParenLoc, in Create() 1438 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 1440 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPCopyinClause), in CreateEmpty() 1443 return new (Mem) OMPCopyinClause(N); in CreateEmpty()
|
| HD | StmtProfile.cpp | 400 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| HD | StmtPrinter.cpp | 780 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | OpenMPKinds.def | 117 OPENMP_CLAUSE(copyin, OMPCopyinClause)
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 1780 C = OMPCopyinClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2001 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| HD | ASTWriterStmt.cpp | 1876 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGStmtOpenMP.cpp | 222 auto *C = cast<OMPCopyinClause>(*I); in EmitOMPCopyinClause()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaOpenMP.cpp | 6589 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
|
| HD | TreeTransform.h | 7414 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
|