Home
last modified time | relevance | path

Searched refs:OMPCopyinClause (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/AST/
DOpenMPClause.cpp368 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()
DStmtProfile.cpp457 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
DStmtPrinter.cpp864 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2198 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);
DRecursiveASTVisitor.h2815 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def201 OPENMP_CLAUSE(copyin, OMPCopyinClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1862 C = OMPCopyinClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2189 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
DASTWriterStmt.cpp1985 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp701 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
/external/clang/tools/libclang/
DCIndex.cpp2233 void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp9991 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
DTreeTransform.h7954 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()