Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp2280 OMPMaskedDirective *OMPMaskedDirective::Create(const ASTContext &C, in Create()
2285 return createDirective<OMPMaskedDirective>(C, Clauses, AssociatedStmt, in Create()
2290 OMPMaskedDirective *OMPMaskedDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2293 return createEmptyDirective<OMPMaskedDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp1230 void StmtProfiler::VisitOMPMaskedDirective(const OMPMaskedDirective *S) { in VisitOMPMaskedDirective()
H A DStmtPrinter.cpp1090 void StmtPrinter::VisitOMPMaskedDirective(OMPMaskedDirective *Node) { in VisitOMPMaskedDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td288 def OMPMaskedDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h5819 class OMPMaskedDirective final : public OMPExecutableDirective {
5828 OMPMaskedDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMaskedDirective() function
5834 explicit OMPMaskedDirective() in OMPMaskedDirective() function
5846 static OMPMaskedDirective *
5854 static OMPMaskedDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3144 DEF_TRAVERSE_STMT(OMPMaskedDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2646 void ASTStmtReader::VisitOMPMaskedDirective(OMPMaskedDirective *D) { in VisitOMPMaskedDirective()
3656 S = OMPMaskedDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2620 void ASTStmtWriter::VisitOMPMaskedDirective(OMPMaskedDirective *D) { in VisitOMPMaskedDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp407 EmitOMPMaskedDirective(cast<OMPMaskedDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3514 void EmitOMPMaskedDirective(const OMPMaskedDirective &S);
H A DCGStmtOpenMP.cpp4253 void CodeGenFunction::EmitOMPMaskedDirective(const OMPMaskedDirective &S) { in EmitOMPMaskedDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h9325 TreeTransform<Derived>::TransformOMPMaskedDirective(OMPMaskedDirective *D) { in TransformOMPMaskedDirective()
H A DSemaOpenMP.cpp10725 return OMPMaskedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPMaskedDirective()