Searched refs:OMPCriticalDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1029 class OMPCriticalDirective : public OMPExecutableDirective { 1039 OMPCriticalDirective(const DeclarationNameInfo &Name, SourceLocation StartLoc, in OMPCriticalDirective() function 1047 explicit OMPCriticalDirective() in OMPCriticalDirective() function 1067 static OMPCriticalDirective * 1075 static OMPCriticalDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | DataRecursiveASTVisitor.h | 2333 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
|
D | RecursiveASTVisitor.h | 2363 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1845 OMPCriticalDirective *OMPCriticalDirective::Create( in Create() 1848 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPCriticalDirective), in Create() 1851 OMPCriticalDirective *Dir = in Create() 1852 new (Mem) OMPCriticalDirective(Name, StartLoc, EndLoc); in Create() 1857 OMPCriticalDirective *OMPCriticalDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 1859 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPCriticalDirective), in CreateEmpty() 1862 return new (Mem) OMPCriticalDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 473 void StmtProfiler::VisitOMPCriticalDirective(const OMPCriticalDirective *S) { in VisitOMPCriticalDirective()
|
D | StmtPrinter.cpp | 864 void StmtPrinter::VisitOMPCriticalDirective(OMPCriticalDirective *Node) { in VisitOMPCriticalDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 192 def OMPCriticalDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1267 void CodeGenFunction::EmitOMPCriticalDirective(const OMPCriticalDirective &S) { in EmitOMPCriticalDirective()
|
D | CGStmt.cpp | 202 EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2128 void EmitOMPCriticalDirective(const OMPCriticalDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2138 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective() 2748 S = OMPCriticalDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1991 void ASTStmtWriter::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1793 return cast<OMPCriticalDirective>(S)->getDirectiveName(); in get() 1874 void VisitOMPCriticalDirective(const OMPCriticalDirective *D); 2443 void EnqueueVisitor::VisitOMPCriticalDirective(const OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 6694 DirName = cast<OMPCriticalDirective>(D)->getDirectiveName(); in TransformOMPExecutableDirective() 6793 TreeTransform<Derived>::TransformOMPCriticalDirective(OMPCriticalDirective *D) { in TransformOMPCriticalDirective()
|
D | SemaOpenMP.cpp | 3149 return OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc, in ActOnOpenMPCriticalDirective()
|