Searched refs:OMPCopyinClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 252 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 259 void OMPCopyinClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 266 void OMPCopyinClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 274 OMPCopyinClause *OMPCopyinClause::Create( in Create() 278 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPCopyinClause), in Create() 281 OMPCopyinClause *Clause = in Create() 282 new (Mem) OMPCopyinClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 290 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 291 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPCopyinClause), in CreateEmpty() 294 return new (Mem) OMPCopyinClause(N); in CreateEmpty()
|
D | StmtProfile.cpp | 422 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
D | StmtPrinter.cpp | 852 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2053 class OMPCopyinClause : public OMPVarListClause<OMPCopyinClause> { 2075 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyinClause() function 2077 : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, StartLoc, LParenLoc, in OMPCopyinClause() 2084 explicit OMPCopyinClause(unsigned N) in OMPCopyinClause() function 2085 : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, SourceLocation(), in OMPCopyinClause() 2152 static OMPCopyinClause * 2161 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | RecursiveASTVisitor.h | 2665 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 149 OPENMP_CLAUSE(copyin, OMPCopyinClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1839 C = OMPCopyinClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2111 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
D | ASTWriterStmt.cpp | 1947 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 465 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2179 void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 7848 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
|
D | TreeTransform.h | 7719 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
|