Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDOpenMPClause.h1856 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);
HDDataRecursiveASTVisitor.h2606 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
HDRecursiveASTVisitor.h2638 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp1400 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()
HDStmtProfile.cpp400 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
HDStmtPrinter.cpp780 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDOpenMPKinds.def117 OPENMP_CLAUSE(copyin, OMPCopyinClause)
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp1780 C = OMPCopyinClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2001 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
HDASTWriterStmt.cpp1876 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmtOpenMP.cpp222 auto *C = cast<OMPCopyinClause>(*I); in EmitOMPCopyinClause()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp6589 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
HDTreeTransform.h7414 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()