Searched refs:OMPFlushDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 609 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()
|
D | StmtProfile.cpp | 629 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
|
D | StmtPrinter.cpp | 1083 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1772 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,
|
D | RecursiveASTVisitor.h | 2522 DEF_TRAVERSE_STMT(OMPFlushDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 215 def OMPFlushDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 236 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2484 void EmitOMPFlushDirective(const OMPFlushDirective &S);
|
D | CGStmtOpenMP.cpp | 2610 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2642 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective() 3353 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2392 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1958 void VisitOMPFlushDirective(const OMPFlushDirective *D); 2670 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5948 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
|
D | TreeTransform.h | 7409 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
|