/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/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 728 OMPTargetDirective *OMPTargetDirective::Create(const ASTContext &C, in Create() 733 return createDirective<OMPTargetDirective>( in Create() 737 OMPTargetDirective *OMPTargetDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 740 return createEmptyDirective<OMPTargetDirective>(C, NumClauses, in CreateEmpty()
|
D | StmtProfile.cpp | 953 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { in VisitOMPTargetDirective()
|
D | StmtPrinter.cpp | 776 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 218 def OMPTargetDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2559 class OMPTargetDirective : public OMPExecutableDirective { 2567 OMPTargetDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTargetDirective() function 2573 explicit OMPTargetDirective() in OMPTargetDirective() function 2586 static OMPTargetDirective * 2596 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2859 DEF_TRAVERSE_STMT(OMPTargetDirective,
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 244 def OMPTargetDirective : StmtNode<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/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2412 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective() 3264 S = OMPTargetDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2283 void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 3413 void EmitOMPTargetDirective(const OMPTargetDirective &S); 3464 const OMPTargetDirective &S);
|
D | CGStmt.cpp | 267 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 5546 static void emitTargetRegion(CodeGenFunction &CGF, const OMPTargetDirective &S, in emitTargetRegion() 5561 const OMPTargetDirective &S) { in EmitOMPTargetDeviceFunction() 5573 void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &S) { in EmitOMPTargetDirective()
|
/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/llvm-project/clang/lib/Sema/ |
D | Sema.cpp | 1541 void VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1961 void VisitOMPTargetDirective(const OMPTargetDirective *D); 2682 void EnqueueVisitor::VisitOMPTargetDirective(const OMPTargetDirective *D) { in VisitOMPTargetDirective()
|