Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtOpenMP.cpp747 OMPErrorDirective *OMPErrorDirective::Create(const ASTContext &C, in Create()
751 return createDirective<OMPErrorDirective>( in Create()
756 OMPErrorDirective *OMPErrorDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
759 return createEmptyDirective<OMPErrorDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1032 void StmtProfiler::VisitOMPErrorDirective(const OMPErrorDirective *S) { in VisitOMPErrorDirective()
H A DStmtPrinter.cpp847 void StmtPrinter::VisitOMPErrorDirective(OMPErrorDirective *Node) { in VisitOMPErrorDirective()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td296 def OMPErrorDirective : StmtNode<OMPExecutableDirective>;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtOpenMP.h6230 class OMPErrorDirective final : public OMPExecutableDirective {
6238 OMPErrorDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPErrorDirective() function
6243 explicit OMPErrorDirective() in OMPErrorDirective() function
6254 static OMPErrorDirective *Create(const ASTContext &C, SourceLocation StartLoc,
6262 static OMPErrorDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3160 DEF_TRAVERSE_STMT(OMPErrorDirective,
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp2455 void ASTStmtReader::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
3410 S = OMPErrorDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2429 void ASTStmtWriter::VisitOMPErrorDirective(OMPErrorDirective *D) { in VisitOMPErrorDirective()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp259 EmitOMPErrorDirective(cast<OMPErrorDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3524 void EmitOMPErrorDirective(const OMPErrorDirective &S);
H A DCGStmtOpenMP.cpp5250 void CodeGenFunction::EmitOMPErrorDirective(const OMPErrorDirective &S) { in EmitOMPErrorDirective()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2168 void VisitOMPErrorDirective(const OMPErrorDirective *D);
3133 void EnqueueVisitor::VisitOMPErrorDirective(const OMPErrorDirective *D) { in VisitOMPErrorDirective()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h8953 TreeTransform<Derived>::TransformOMPErrorDirective(OMPErrorDirective *D) { in TransformOMPErrorDirective()
H A DSemaOpenMP.cpp11129 return OMPErrorDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPErrorDirective()