Home
last modified time | relevance | path

Searched refs:OMPScopeDirective (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp534 OMPScopeDirective *OMPScopeDirective::Create(const ASTContext &C, in Create()
539 return createDirective<OMPScopeDirective>(C, Clauses, AssociatedStmt, in Create()
544 OMPScopeDirective *OMPScopeDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
547 return createEmptyDirective<OMPScopeDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp1002 void StmtProfiler::VisitOMPScopeDirective(const OMPScopeDirective *S) { in VisitOMPScopeDirective()
H A DStmtPrinter.cpp783 void StmtPrinter::VisitOMPScopeDirective(OMPScopeDirective *Node) { in VisitOMPScopeDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td262 def OMPScopeDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1941 class OMPScopeDirective final : public OMPExecutableDirective {
1950 OMPScopeDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPScopeDirective() function
1956 explicit OMPScopeDirective() in OMPScopeDirective() function
1968 static OMPScopeDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1977 static OMPScopeDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2983 DEF_TRAVERSE_STMT(OMPScopeDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2439 void ASTStmtReader::VisitOMPScopeDirective(OMPScopeDirective *D) { in VisitOMPScopeDirective()
3430 S = OMPScopeDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2426 void ASTStmtWriter::VisitOMPScopeDirective(OMPScopeDirective *D) { in VisitOMPScopeDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8981 TreeTransform<Derived>::TransformOMPScopeDirective(OMPScopeDirective *D) { in TransformOMPScopeDirective()
H A DSemaOpenMP.cpp24024 return OMPScopeDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPScopeDirective()