Searched refs:OMPCopyinClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 368 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 375 void OMPCopyinClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 382 void OMPCopyinClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 390 OMPCopyinClause *OMPCopyinClause::Create( in Create() 395 OMPCopyinClause *Clause = in Create() 396 new (Mem) OMPCopyinClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 404 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 406 return new (Mem) OMPCopyinClause(N); in CreateEmpty()
|
D | StmtProfile.cpp | 457 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
D | StmtPrinter.cpp | 864 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2198 class OMPCopyinClause final 2199 : public OMPVarListClause<OMPCopyinClause>, 2200 private llvm::TrailingObjects<OMPCopyinClause, Expr *> { 2224 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyinClause() function 2226 : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, StartLoc, LParenLoc, in OMPCopyinClause() 2233 explicit OMPCopyinClause(unsigned N) in OMPCopyinClause() function 2234 : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, SourceLocation(), in OMPCopyinClause() 2301 static OMPCopyinClause * 2310 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | RecursiveASTVisitor.h | 2815 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 201 OPENMP_CLAUSE(copyin, OMPCopyinClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1862 C = OMPCopyinClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2189 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
D | ASTWriterStmt.cpp | 1985 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 701 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2233 void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 9991 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
|
D | TreeTransform.h | 7954 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
|