Home
last modified time | relevance | path

Searched refs:OMPBarrierDirective (Results 1 – 25 of 29) sorted by relevance

12

/external/clang/lib/AST/
DStmtOpenMP.cpp515 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()
DStmtProfile.cpp617 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { in VisitOMPBarrierDirective()
DStmtPrinter.cpp1068 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { in VisitOMPBarrierDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1633 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);
DRecursiveASTVisitor.h2507 DEF_TRAVERSE_STMT(OMPBarrierDirective,
/external/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp575 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()
DStmtProfile.cpp919 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { in VisitOMPBarrierDirective()
DStmtPrinter.cpp736 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { in VisitOMPBarrierDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td212 def OMPBarrierDirective : DStmt<OMPExecutableDirective>;
/external/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h2116 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);
DRecursiveASTVisitor.h2829 DEF_TRAVERSE_STMT(OMPBarrierDirective,
/external/llvm-project/clang/include/clang/Basic/
DStmtNodes.td236 def OMPBarrierDirective : StmtNode<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp227 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2481 void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
DCGStmtOpenMP.cpp2592 void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { in EmitOMPBarrierDirective()
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2370 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
3223 S = OMPBarrierDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2330 void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2627 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
3341 S = OMPBarrierDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2374 void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/external/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp243 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); in EmitStmt()
DCodeGenFunction.h3405 void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
DCGStmtOpenMP.cpp4336 void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { in EmitOMPBarrierDirective()
/external/clang/tools/libclang/
DCIndex.cpp1952 void VisitOMPBarrierDirective(const OMPBarrierDirective *D);
2657 void EnqueueVisitor::VisitOMPBarrierDirective(const OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2057 void VisitOMPBarrierDirective(const OMPBarrierDirective *D);
2914 void EnqueueVisitor::VisitOMPBarrierDirective(const OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5923 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPBarrierDirective()

12