Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp842 OMPErrorDirective *OMPErrorDirective::Create(const ASTContext &C, in Create()
846 return createDirective<OMPErrorDirective>( in Create()
851 OMPErrorDirective *OMPErrorDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
854 return createEmptyDirective<OMPErrorDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1107 void StmtProfiler::VisitOMPErrorDirective(const OMPErrorDirective *S) { in VisitOMPErrorDirective()
H A DStmtPrinter.cpp891 void StmtPrinter::VisitOMPErrorDirective(OMPErrorDirective *Node) { in VisitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td303 def OMPErrorDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h6514 class OMPErrorDirective final : public OMPExecutableDirective {
6522 OMPErrorDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPErrorDirective() function
6527 explicit OMPErrorDirective() in OMPErrorDirective() function
6538 static OMPErrorDirective *Create(const ASTContext &C, SourceLocation StartLoc,
6546 static OMPErrorDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3299 DEF_TRAVERSE_STMT(OMPErrorDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2568 void ASTStmtReader::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
3712 S = OMPErrorDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2645 void ASTStmtWriter::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp277 EmitOMPErrorDirective(cast<OMPErrorDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3877 void EmitOMPErrorDirective(const OMPErrorDirective &S);
H A DCGStmtOpenMP.cpp5543 void CodeGenFunction::EmitOMPErrorDirective(const OMPErrorDirective &S) { in EmitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9886 TreeTransform<Derived>::TransformOMPErrorDirective(OMPErrorDirective *D) { in TransformOMPErrorDirective()
H A DSemaOpenMP.cpp11097 return OMPErrorDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses); in ActOnOpenMPErrorDirective()