Home
last modified time | relevance | path

Searched refs:OMPCriticalDirective (Results 1 – 15 of 15) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h1004 class OMPCriticalDirective : public OMPExecutableDirective {
1014 OMPCriticalDirective(const DeclarationNameInfo &Name, SourceLocation StartLoc, in OMPCriticalDirective() function
1022 explicit OMPCriticalDirective() in OMPCriticalDirective() function
1042 static OMPCriticalDirective *
1050 static OMPCriticalDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DDataRecursiveASTVisitor.h2331 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
H A DRecursiveASTVisitor.h2353 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DStmt.cpp1707 OMPCriticalDirective *OMPCriticalDirective::Create( in Create()
1710 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPCriticalDirective), in Create()
1713 OMPCriticalDirective *Dir = in Create()
1714 new (Mem) OMPCriticalDirective(Name, StartLoc, EndLoc); in Create()
1719 OMPCriticalDirective *OMPCriticalDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1721 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPCriticalDirective), in CreateEmpty()
1724 return new (Mem) OMPCriticalDirective(); in CreateEmpty()
H A DStmtProfile.cpp427 void StmtProfiler::VisitOMPCriticalDirective(const OMPCriticalDirective *S) { in VisitOMPCriticalDirective()
H A DStmtPrinter.cpp864 void StmtPrinter::VisitOMPCriticalDirective(OMPCriticalDirective *Node) { in VisitOMPCriticalDirective()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td192 def OMPCriticalDirective : DStmt<OMPExecutableDirective>;
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp635 void CodeGenFunction::EmitOMPCriticalDirective(const OMPCriticalDirective &S) { in EmitOMPCriticalDirective()
H A DCGStmt.cpp204 EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h2016 void EmitOMPCriticalDirective(const OMPCriticalDirective &S);
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2073 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
2679 S = OMPCriticalDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1953 void ASTStmtWriter::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp1794 return cast<OMPCriticalDirective>(S)->getDirectiveName(); in get()
1875 void VisitOMPCriticalDirective(const OMPCriticalDirective *D);
2382 void EnqueueVisitor::VisitOMPCriticalDirective(const OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h6662 DirName = cast<OMPCriticalDirective>(D)->getDirectiveName(); in TransformOMPExecutableDirective()
6761 TreeTransform<Derived>::TransformOMPCriticalDirective(OMPCriticalDirective *D) { in TransformOMPCriticalDirective()
H A DSemaOpenMP.cpp3079 return OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc, in ActOnOpenMPCriticalDirective()