Searched refs:OMPFlushDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1480 class OMPFlushDirective : public OMPExecutableDirective { 1488 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPFlushDirective() function 1497 explicit OMPFlushDirective(unsigned NumClauses) in OMPFlushDirective() function 1511 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc, 1521 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
|
D | DataRecursiveASTVisitor.h | 2359 DEF_TRAVERSE_STMT(OMPFlushDirective,
|
D | RecursiveASTVisitor.h | 2389 DEF_TRAVERSE_STMT(OMPFlushDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 2047 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create() 2051 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPFlushDirective), in Create() 2054 OMPFlushDirective *Dir = in Create() 2055 new (Mem) OMPFlushDirective(StartLoc, EndLoc, Clauses.size()); in Create() 2060 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 2063 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPFlushDirective), in CreateEmpty() 2066 return new (Mem) OMPFlushDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 509 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
|
D | StmtPrinter.cpp | 911 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 200 def OMPFlushDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1364 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
|
D | CGStmt.cpp | 226 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2136 void EmitOMPFlushDirective(const OMPFlushDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2183 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective() 2790 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2062 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1882 void VisitOMPFlushDirective(const OMPFlushDirective *D); 2480 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3279 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
|
D | TreeTransform.h | 6880 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
|