Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp252 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()
DStmtProfile.cpp422 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
DStmtPrinter.cpp852 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2053 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);
DRecursiveASTVisitor.h2665 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def149 OPENMP_CLAUSE(copyin, OMPCopyinClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1839 C = OMPCopyinClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2111 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
DASTWriterStmt.cpp1947 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp465 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
/external/clang/tools/libclang/
DCIndex.cpp2179 void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp7848 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
DTreeTransform.h7719 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()