Home
last modified time | relevance | path

Searched refs:OMPTargetDirective (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/AST/
DStmtOpenMP.h1717 class OMPTargetDirective : public OMPExecutableDirective {
1725 OMPTargetDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetDirective() function
1734 explicit OMPTargetDirective(unsigned NumClauses) in OMPTargetDirective() function
1748 static OMPTargetDirective *
1758 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
DDataRecursiveASTVisitor.h2368 DEF_TRAVERSE_STMT(OMPTargetDirective,
DRecursiveASTVisitor.h2398 DEF_TRAVERSE_STMT(OMPTargetDirective,
/external/clang/lib/AST/
DStmt.cpp2120 OMPTargetDirective *OMPTargetDirective::Create(const ASTContext &C, in Create()
2125 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTargetDirective), in Create()
2129 OMPTargetDirective *Dir = in Create()
2130 new (Mem) OMPTargetDirective(StartLoc, EndLoc, Clauses.size()); in Create()
2136 OMPTargetDirective *OMPTargetDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2139 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTargetDirective), in CreateEmpty()
2143 return new (Mem) OMPTargetDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp521 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { in VisitOMPTargetDirective()
DStmtPrinter.cpp926 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td203 def OMPTargetDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1687 void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &) { in EmitOMPTargetDirective() argument
DCGStmt.cpp235 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2139 void EmitOMPTargetDirective(const OMPTargetDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2208 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
2804 S = OMPTargetDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2037 void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
/external/clang/tools/libclang/
DCIndex.cpp1885 void VisitOMPTargetDirective(const OMPTargetDirective *D);
2492 void EnqueueVisitor::VisitOMPTargetDirective(const OMPTargetDirective *D) { in VisitOMPTargetDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3991 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTargetDirective()
DTreeTransform.h6913 TreeTransform<Derived>::TransformOMPTargetDirective(OMPTargetDirective *D) { in TransformOMPTargetDirective()