Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp2315 OMPMaskedDirective *OMPMaskedDirective::Create(const ASTContext &C, in Create()
2320 return createDirective<OMPMaskedDirective>(C, Clauses, AssociatedStmt, in Create()
2325 OMPMaskedDirective *OMPMaskedDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2328 return createEmptyDirective<OMPMaskedDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp1276 void StmtProfiler::VisitOMPMaskedDirective(const OMPMaskedDirective *S) { in VisitOMPMaskedDirective()
H A DStmtPrinter.cpp1106 void StmtPrinter::VisitOMPMaskedDirective(OMPMaskedDirective *Node) { in VisitOMPMaskedDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td290 def OMPMaskedDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5889 class OMPMaskedDirective final : public OMPExecutableDirective {
5898 OMPMaskedDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMaskedDirective() function
5904 explicit OMPMaskedDirective() in OMPMaskedDirective() function
5916 static OMPMaskedDirective *
5924 static OMPMaskedDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3153 DEF_TRAVERSE_STMT(OMPMaskedDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2750 void ASTStmtReader::VisitOMPMaskedDirective(OMPMaskedDirective *D) { in VisitOMPMaskedDirective()
3796 S = OMPMaskedDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2793 void ASTStmtWriter::VisitOMPMaskedDirective(OMPMaskedDirective *D) { in VisitOMPMaskedDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp415 EmitOMPMaskedDirective(cast<OMPMaskedDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3603 void EmitOMPMaskedDirective(const OMPMaskedDirective &S);
H A DCGStmtOpenMP.cpp4311 void CodeGenFunction::EmitOMPMaskedDirective(const OMPMaskedDirective &S) { in EmitOMPMaskedDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9616 TreeTransform<Derived>::TransformOMPMaskedDirective(OMPMaskedDirective *D) { in TransformOMPMaskedDirective()
H A DSemaOpenMP.cpp11048 return OMPMaskedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPMaskedDirective()