Searched refs:OMPFlushDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 592 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()
|
D | StmtProfile.cpp | 567 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
|
D | StmtPrinter.cpp | 1019 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1691 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,
|
D | RecursiveASTVisitor.h | 2418 DEF_TRAVERSE_STMT(OMPFlushDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 214 def OMPFlushDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 236 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2333 void EmitOMPFlushDirective(const OMPFlushDirective &S);
|
D | CGStmtOpenMP.cpp | 2047 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2392 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective() 3051 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2228 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1939 void VisitOMPFlushDirective(const OMPFlushDirective *D); 2597 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 4570 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
|
D | TreeTransform.h | 7299 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
|