Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp2282 OMPInteropDirective *
2283 OMPInteropDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
2286 return createDirective<OMPInteropDirective>( in Create()
2291 OMPInteropDirective *OMPInteropDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2294 return createEmptyDirective<OMPInteropDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1268 void StmtProfiler::VisitOMPInteropDirective(const OMPInteropDirective *S) { in VisitOMPInteropDirective()
H A DStmtPrinter.cpp1096 void StmtPrinter::VisitOMPInteropDirective(OMPInteropDirective *Node) { in VisitOMPInteropDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td288 def OMPInteropDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5771 class OMPInteropDirective final : public OMPExecutableDirective {
5780 OMPInteropDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPInteropDirective() function
5786 explicit OMPInteropDirective() in OMPInteropDirective() function
5799 static OMPInteropDirective *Create(const ASTContext &C,
5808 static OMPInteropDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3147 DEF_TRAVERSE_STMT(OMPInteropDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2739 void ASTStmtReader::VisitOMPInteropDirective(OMPInteropDirective *D) { in VisitOMPInteropDirective()
3786 S = OMPInteropDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2780 void ASTStmtWriter::VisitOMPInteropDirective(OMPInteropDirective *D) { in VisitOMPInteropDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp407 EmitOMPInteropDirective(cast<OMPInteropDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3674 void EmitOMPInteropDirective(const OMPInteropDirective &S);
H A DCGStmtOpenMP.cpp6997 void CodeGenFunction::EmitOMPInteropDirective(const OMPInteropDirective &S) { in EmitOMPInteropDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9594 TreeTransform<Derived>::TransformOMPInteropDirective(OMPInteropDirective *D) { in TransformOMPInteropDirective()
H A DSemaOpenMP.cpp17889 return OMPInteropDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPInteropDirective()