Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp1981 OMPMaskedDirective *OMPMaskedDirective::Create(const ASTContext &C, in Create()
1986 return createDirective<OMPMaskedDirective>(C, Clauses, AssociatedStmt, in Create()
1991 OMPMaskedDirective *OMPMaskedDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1994 return createEmptyDirective<OMPMaskedDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp1169 void StmtProfiler::VisitOMPMaskedDirective(const OMPMaskedDirective *S) { in VisitOMPMaskedDirective()
H A DStmtPrinter.cpp974 void StmtPrinter::VisitOMPMaskedDirective(OMPMaskedDirective *Node) { in VisitOMPMaskedDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h5215 class OMPMaskedDirective final : public OMPExecutableDirective {
5224 OMPMaskedDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMaskedDirective() function
5230 explicit OMPMaskedDirective() in OMPMaskedDirective() function
5242 static OMPMaskedDirective *
5250 static OMPMaskedDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2992 DEF_TRAVERSE_STMT(OMPMaskedDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td280 def OMPMaskedDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2603 void ASTStmtReader::VisitOMPMaskedDirective(OMPMaskedDirective *D) { in VisitOMPMaskedDirective()
3534 S = OMPMaskedDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2558 void ASTStmtWriter::VisitOMPMaskedDirective(OMPMaskedDirective *D) { in VisitOMPMaskedDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp387 EmitOMPMaskedDirective(cast<OMPMaskedDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3450 void EmitOMPMaskedDirective(const OMPMaskedDirective &S);
H A DCGStmtOpenMP.cpp3993 void CodeGenFunction::EmitOMPMaskedDirective(const OMPMaskedDirective &S) { in EmitOMPMaskedDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h9120 TreeTransform<Derived>::TransformOMPMaskedDirective(OMPMaskedDirective *D) { in TransformOMPMaskedDirective()
H A DSemaOpenMP.cpp9902 return OMPMaskedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPMaskedDirective()