Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp1141 OMPTeamsDirective *OMPTeamsDirective::Create(const ASTContext &C, in Create()
1146 return createDirective<OMPTeamsDirective>( in Create()
1150 OMPTeamsDirective *OMPTeamsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1153 return createEmptyDirective<OMPTeamsDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp1164 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { in VisitOMPTeamsDirective()
H A DStmtPrinter.cpp960 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { in VisitOMPTeamsDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td264 def OMPTeamsDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h3544 class OMPTeamsDirective : public OMPExecutableDirective {
3552 OMPTeamsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTeamsDirective() function
3558 explicit OMPTeamsDirective() in OMPTeamsDirective() function
3571 static OMPTeamsDirective *Create(const ASTContext &C, SourceLocation StartLoc,
3582 static OMPTeamsDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3191 DEF_TRAVERSE_STMT(OMPTeamsDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2643 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
3788 S = OMPTeamsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2682 void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp307 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3894 void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
H A DCGStmtOpenMP.cpp7027 void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &S) { in EmitOMPTeamsDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h10040 TreeTransform<Derived>::TransformOMPTeamsDirective(OMPTeamsDirective *D) { in TransformOMPTeamsDirective()
H A DSemaOpenMP.cpp13276 return OMPTeamsDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses, in ActOnOpenMPTeamsDirective()