Home
last modified time | relevance | path

Searched refs:OMPTeamsDirective (Results 1 – 16 of 16) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp855 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()
DStmtProfile.cpp669 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { in VisitOMPTeamsDirective()
DStmtPrinter.cpp1132 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { in VisitOMPTeamsDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h2389 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,
DRecursiveASTVisitor.h2549 DEF_TRAVERSE_STMT(OMPTeamsDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td225 def OMPTeamsDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGOpenMPRuntimeNVPTX.cpp366 if (isa<OMPTeamsDirective>(D)) { in emitParallelOrTeamsOutlinedFunction()
DCGStmtOpenMP.cpp3326 const OMPTeamsDirective &TD = *dyn_cast<OMPTeamsDirective>(&S); in emitCommonOMPTeamsDirective()
3344 void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &S) { in EmitOMPTeamsDirective()
DCGStmt.cpp248 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2495 void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
DCGOpenMPRuntime.cpp4888 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/
DASTReaderStmt.cpp2709 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
3406 S = OMPTeamsDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2406 void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
/external/clang/tools/libclang/
DCIndex.cpp1968 void VisitOMPTeamsDirective(const OMPTeamsDirective *D);
2711 void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp6913 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTeamsDirective()
DTreeTransform.h7519 TreeTransform<Derived>::TransformOMPTeamsDirective(OMPTeamsDirective *D) { in TransformOMPTeamsDirective()