Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp2247 OMPInteropDirective *
2248 OMPInteropDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
2251 return createDirective<OMPInteropDirective>( in Create()
2256 OMPInteropDirective *OMPInteropDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2259 return createEmptyDirective<OMPInteropDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1222 void StmtProfiler::VisitOMPInteropDirective(const OMPInteropDirective *S) { in VisitOMPInteropDirective()
H A DStmtPrinter.cpp1080 void StmtPrinter::VisitOMPInteropDirective(OMPInteropDirective *Node) { in VisitOMPInteropDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td286 def OMPInteropDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h5701 class OMPInteropDirective final : public OMPExecutableDirective {
5710 OMPInteropDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPInteropDirective() function
5716 explicit OMPInteropDirective() in OMPInteropDirective() function
5729 static OMPInteropDirective *Create(const ASTContext &C,
5738 static OMPInteropDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3138 DEF_TRAVERSE_STMT(OMPInteropDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2635 void ASTStmtReader::VisitOMPInteropDirective(OMPInteropDirective *D) { in VisitOMPInteropDirective()
3646 S = OMPInteropDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2607 void ASTStmtWriter::VisitOMPInteropDirective(OMPInteropDirective *D) { in VisitOMPInteropDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp401 EmitOMPInteropDirective(cast<OMPInteropDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3578 void EmitOMPInteropDirective(const OMPInteropDirective &S);
H A DCGStmtOpenMP.cpp6947 void CodeGenFunction::EmitOMPInteropDirective(const OMPInteropDirective &S) { in EmitOMPInteropDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h9303 TreeTransform<Derived>::TransformOMPInteropDirective(OMPInteropDirective *D) { in TransformOMPInteropDirective()
H A DSemaOpenMP.cpp17284 return OMPInteropDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPInteropDirective()