Home
last modified time | relevance | path

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

/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/clang/include/clang/Basic/
DStmtNodes.td212 def OMPBarrierDirective : DStmt<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/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/clang/tools/libclang/
DCIndex.cpp1952 void VisitOMPBarrierDirective(const OMPBarrierDirective *D);
2657 void EnqueueVisitor::VisitOMPBarrierDirective(const OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5923 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPBarrierDirective()
DTreeTransform.h7376 TreeTransform<Derived>::TransformOMPBarrierDirective(OMPBarrierDirective *D) { in TransformOMPBarrierDirective()