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.cpp766 OMPErrorDirective *OMPErrorDirective::Create(const ASTContext &C, in Create()
770 return createDirective<OMPErrorDirective>( in Create()
775 OMPErrorDirective *OMPErrorDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
778 return createEmptyDirective<OMPErrorDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1060 void StmtProfiler::VisitOMPErrorDirective(const OMPErrorDirective *S) { in VisitOMPErrorDirective()
H A DStmtPrinter.cpp857 void StmtPrinter::VisitOMPErrorDirective(OMPErrorDirective *Node) { in VisitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td297 def OMPErrorDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h6299 class OMPErrorDirective final : public OMPExecutableDirective {
6307 OMPErrorDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPErrorDirective() function
6312 explicit OMPErrorDirective() in OMPErrorDirective() function
6323 static OMPErrorDirective *Create(const ASTContext &C, SourceLocation StartLoc,
6331 static OMPErrorDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3171 DEF_TRAVERSE_STMT(OMPErrorDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2512 void ASTStmtReader::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
3498 S = OMPErrorDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2561 void ASTStmtWriter::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp261 EmitOMPErrorDirective(cast<OMPErrorDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3611 void EmitOMPErrorDirective(const OMPErrorDirective &S);
H A DCGStmtOpenMP.cpp5284 void CodeGenFunction::EmitOMPErrorDirective(const OMPErrorDirective &S) { in EmitOMPErrorDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9123 TreeTransform<Derived>::TransformOMPErrorDirective(OMPErrorDirective *D) { in TransformOMPErrorDirective()
H A DSemaOpenMP.cpp11369 return OMPErrorDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPErrorDirective()