Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp592 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
596 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPFlushDirective), in Create()
599 OMPFlushDirective *Dir = in Create()
600 new (Mem) OMPFlushDirective(StartLoc, EndLoc, Clauses.size()); in Create()
605 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
608 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPFlushDirective), in CreateEmpty()
611 return new (Mem) OMPFlushDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp567 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
DStmtPrinter.cpp1019 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1691 class OMPFlushDirective : public OMPExecutableDirective {
1699 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPFlushDirective() function
1708 explicit OMPFlushDirective(unsigned NumClauses) in OMPFlushDirective() function
1722 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1732 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2418 DEF_TRAVERSE_STMT(OMPFlushDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td214 def OMPFlushDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp236 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2333 void EmitOMPFlushDirective(const OMPFlushDirective &S);
DCGStmtOpenMP.cpp2047 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2392 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3051 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2228 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/external/clang/tools/libclang/
DCIndex.cpp1939 void VisitOMPFlushDirective(const OMPFlushDirective *D);
2597 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp4570 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
DTreeTransform.h7299 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()