/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 515 OMPBarrierDirective *OMPBarrierDirective::Create(const ASTContext &C, in Create() 518 void *Mem = C.Allocate(sizeof(OMPBarrierDirective)); in Create() 519 OMPBarrierDirective *Dir = new (Mem) OMPBarrierDirective(StartLoc, EndLoc); in Create() 523 OMPBarrierDirective *OMPBarrierDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 525 void *Mem = C.Allocate(sizeof(OMPBarrierDirective)); in CreateEmpty() 526 return new (Mem) OMPBarrierDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 617 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { in VisitOMPBarrierDirective()
|
D | StmtPrinter.cpp | 1068 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { in VisitOMPBarrierDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1633 class OMPBarrierDirective : public OMPExecutableDirective { 1640 OMPBarrierDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPBarrierDirective() function 1646 explicit OMPBarrierDirective() in OMPBarrierDirective() function 1657 static OMPBarrierDirective * 1664 static OMPBarrierDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2507 DEF_TRAVERSE_STMT(OMPBarrierDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 575 OMPBarrierDirective *OMPBarrierDirective::Create(const ASTContext &C, in Create() 578 return new (C) OMPBarrierDirective(StartLoc, EndLoc); in Create() 581 OMPBarrierDirective *OMPBarrierDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 583 return new (C) OMPBarrierDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 919 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { in VisitOMPBarrierDirective()
|
D | StmtPrinter.cpp | 736 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { in VisitOMPBarrierDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 212 def OMPBarrierDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2116 class OMPBarrierDirective : public OMPExecutableDirective { 2124 OMPBarrierDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPBarrierDirective() function 2130 explicit OMPBarrierDirective() in OMPBarrierDirective() function 2142 static OMPBarrierDirective * 2149 static OMPBarrierDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2829 DEF_TRAVERSE_STMT(OMPBarrierDirective,
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 236 def OMPBarrierDirective : StmtNode<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 227 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2481 void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
|
D | CGStmtOpenMP.cpp | 2592 void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { in EmitOMPBarrierDirective()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2370 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective() 3223 S = OMPBarrierDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2330 void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2627 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective() 3341 S = OMPBarrierDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2374 void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 243 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 3405 void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
|
D | CGStmtOpenMP.cpp | 4336 void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { in EmitOMPBarrierDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1952 void VisitOMPBarrierDirective(const OMPBarrierDirective *D); 2657 void EnqueueVisitor::VisitOMPBarrierDirective(const OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2057 void VisitOMPBarrierDirective(const OMPBarrierDirective *D); 2914 void EnqueueVisitor::VisitOMPBarrierDirective(const OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5923 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPBarrierDirective()
|