Searched refs:OMPTargetDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 688 OMPTargetDirective *OMPTargetDirective::Create(const ASTContext &C, in Create() 694 llvm::alignTo(sizeof(OMPTargetDirective), llvm::alignOf<OMPClause *>()); in Create() 697 OMPTargetDirective *Dir = in Create() 698 new (Mem) OMPTargetDirective(StartLoc, EndLoc, Clauses.size()); in Create() 704 OMPTargetDirective *OMPTargetDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 708 llvm::alignTo(sizeof(OMPTargetDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 711 return new (Mem) OMPTargetDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 641 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { in VisitOMPTargetDirective()
|
D | StmtPrinter.cpp | 1098 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2016 class OMPTargetDirective : public OMPExecutableDirective { 2024 OMPTargetDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetDirective() function 2033 explicit OMPTargetDirective(unsigned NumClauses) in OMPTargetDirective() function 2047 static OMPTargetDirective * 2057 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2531 DEF_TRAVERSE_STMT(OMPTargetDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 218 def OMPTargetDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 2487 void EmitOMPTargetDirective(const OMPTargetDirective &S); 2516 const OMPTargetDirective &S,
|
D | CGStmt.cpp | 245 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 3245 CodeGenModule &CGM, const OMPTargetDirective &S, StringRef ParentName, in EmitOMPTargetDirectiveOutlinedFunction() 3264 void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &S) { in EmitOMPTargetDirective()
|
D | CGOpenMPRuntime.cpp | 5898 bool isTargetDirective = isa<OMPTargetDirective>(S); in scanForTargetRegionsFunctions() 5918 CGM, cast<OMPTargetDirective>(*E), ParentName, in scanForTargetRegionsFunctions()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2669 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective() 3368 S = OMPTargetDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2323 void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1961 void VisitOMPTargetDirective(const OMPTargetDirective *D); 2682 void EnqueueVisitor::VisitOMPTargetDirective(const OMPTargetDirective *D) { in VisitOMPTargetDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 6747 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTargetDirective()
|
D | TreeTransform.h | 7442 TreeTransform<Derived>::TransformOMPTargetDirective(OMPTargetDirective *D) { in TransformOMPTargetDirective()
|