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.cpp804 OMPErrorDirective *OMPErrorDirective::Create(const ASTContext &C, in Create()
808 return createDirective<OMPErrorDirective>( in Create()
813 OMPErrorDirective *OMPErrorDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
816 return createEmptyDirective<OMPErrorDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1071 void StmtProfiler::VisitOMPErrorDirective(const OMPErrorDirective *S) { in VisitOMPErrorDirective()
H A DStmtPrinter.cpp870 void StmtPrinter::VisitOMPErrorDirective(OMPErrorDirective *Node) { in VisitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td301 def OMPErrorDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h6450 class OMPErrorDirective final : public OMPExecutableDirective {
6458 OMPErrorDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPErrorDirective() function
6463 explicit OMPErrorDirective() in OMPErrorDirective() function
6474 static OMPErrorDirective *Create(const ASTContext &C, SourceLocation StartLoc,
6482 static OMPErrorDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3241 DEF_TRAVERSE_STMT(OMPErrorDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2540 void ASTStmtReader::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
3575 S = OMPErrorDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2610 void ASTStmtWriter::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp271 EmitOMPErrorDirective(cast<OMPErrorDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3839 void EmitOMPErrorDirective(const OMPErrorDirective &S);
H A DCGStmtOpenMP.cpp5341 void CodeGenFunction::EmitOMPErrorDirective(const OMPErrorDirective &S) { in EmitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9452 TreeTransform<Derived>::TransformOMPErrorDirective(OMPErrorDirective *D) { in TransformOMPErrorDirective()
H A DSemaOpenMP.cpp11031 return OMPErrorDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses); in ActOnOpenMPErrorDirective()