/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 855 OMPTeamsDirective *OMPTeamsDirective::Create(const ASTContext &C, in Create() 861 llvm::alignTo(sizeof(OMPTeamsDirective), llvm::alignOf<OMPClause *>()); in Create() 864 OMPTeamsDirective *Dir = in Create() 865 new (Mem) OMPTeamsDirective(StartLoc, EndLoc, Clauses.size()); in Create() 871 OMPTeamsDirective *OMPTeamsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 875 llvm::alignTo(sizeof(OMPTeamsDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 878 return new (Mem) OMPTeamsDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 669 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { in VisitOMPTeamsDirective()
|
D | StmtPrinter.cpp | 1132 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { in VisitOMPTeamsDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2389 class OMPTeamsDirective : public OMPExecutableDirective { 2397 OMPTeamsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTeamsDirective() function 2406 explicit OMPTeamsDirective(unsigned NumClauses) in OMPTeamsDirective() function 2420 static OMPTeamsDirective *Create(const ASTContext &C, SourceLocation StartLoc, 2431 static OMPTeamsDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2549 DEF_TRAVERSE_STMT(OMPTeamsDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 851 OMPTeamsDirective *OMPTeamsDirective::Create(const ASTContext &C, in Create() 856 return createDirective<OMPTeamsDirective>( in Create() 860 OMPTeamsDirective *OMPTeamsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 863 return createEmptyDirective<OMPTeamsDirective>(C, NumClauses, in CreateEmpty()
|
D | StmtProfile.cpp | 981 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { in VisitOMPTeamsDirective()
|
D | StmtPrinter.cpp | 810 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { in VisitOMPTeamsDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 225 def OMPTeamsDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntimeNVPTX.cpp | 366 if (isa<OMPTeamsDirective>(D)) { in emitParallelOrTeamsOutlinedFunction()
|
D | CGStmtOpenMP.cpp | 3326 const OMPTeamsDirective &TD = *dyn_cast<OMPTeamsDirective>(&S); in emitCommonOMPTeamsDirective() 3344 void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &S) { in EmitOMPTeamsDirective()
|
D | CGStmt.cpp | 248 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2495 void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
|
D | CGOpenMPRuntime.cpp | 4888 if (auto *TeamsDir = dyn_cast_or_null<OMPTeamsDirective>( in emitNumTeamsClauseForTargetDirective() 4937 if (auto *TeamsDir = dyn_cast_or_null<OMPTeamsDirective>( in emitThreadLimitClauseForTargetDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2951 class OMPTeamsDirective : public OMPExecutableDirective { 2959 OMPTeamsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTeamsDirective() function 2965 explicit OMPTeamsDirective() in OMPTeamsDirective() function 2978 static OMPTeamsDirective *Create(const ASTContext &C, SourceLocation StartLoc, 2989 static OMPTeamsDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2877 DEF_TRAVERSE_STMT(OMPTeamsDirective,
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 251 def OMPTeamsDirective : StmtNode<OMPExecutableDirective>;
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2447 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective() 3302 S = OMPTeamsDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2372 void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2709 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective() 3406 S = OMPTeamsDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2406 void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 270 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 3421 void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1968 void VisitOMPTeamsDirective(const OMPTeamsDirective *D); 2711 void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2075 void VisitOMPTeamsDirective(const OMPTeamsDirective *D); 2978 void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|