Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp609 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
614 llvm::alignTo(sizeof(OMPFlushDirective), llvm::alignOf<OMPClause *>()); in Create()
616 OMPFlushDirective *Dir = in Create()
617 new (Mem) OMPFlushDirective(StartLoc, EndLoc, Clauses.size()); in Create()
622 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
626 llvm::alignTo(sizeof(OMPFlushDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
628 return new (Mem) OMPFlushDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp629 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
DStmtPrinter.cpp1083 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1772 class OMPFlushDirective : public OMPExecutableDirective {
1780 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPFlushDirective() function
1789 explicit OMPFlushDirective(unsigned NumClauses) in OMPFlushDirective() function
1803 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1813 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2522 DEF_TRAVERSE_STMT(OMPFlushDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td215 def OMPFlushDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp236 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2484 void EmitOMPFlushDirective(const OMPFlushDirective &S);
DCGStmtOpenMP.cpp2610 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2642 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3353 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2392 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/external/clang/tools/libclang/
DCIndex.cpp1958 void VisitOMPFlushDirective(const OMPFlushDirective *D);
2670 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5948 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
DTreeTransform.h7409 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()