Searched refs:OMPTeamsDirective (Results 1 – 16 of 16) sorted by relevance
/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/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/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/clang/tools/libclang/ |
D | CIndex.cpp | 1968 void VisitOMPTeamsDirective(const OMPTeamsDirective *D); 2711 void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 6913 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTeamsDirective()
|
D | TreeTransform.h | 7519 TreeTransform<Derived>::TransformOMPTeamsDirective(OMPTeamsDirective *D) { in TransformOMPTeamsDirective()
|