Searched refs:OMPParallelDirective (Results 1 – 12 of 12) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 362 class OMPParallelDirective : public OMPExecutableDirective { 368 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function 377 explicit OMPParallelDirective(unsigned N) in OMPParallelDirective() function 389 static OMPParallelDirective *Create(ASTContext &C, SourceLocation StartLoc, 399 static OMPParallelDirective *CreateEmpty(ASTContext &C, unsigned N,
|
D | RecursiveASTVisitor.h | 2395 DEF_TRAVERSE_STMT(OMPParallelDirective, {
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1149 OMPParallelDirective *OMPParallelDirective::Create( in Create() 1155 void *Mem = C.Allocate(sizeof(OMPParallelDirective) + in Create() 1157 llvm::alignOf<OMPParallelDirective>()); in Create() 1158 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc, in Create() 1165 OMPParallelDirective *OMPParallelDirective::CreateEmpty(ASTContext &C, in CreateEmpty() 1168 void *Mem = C.Allocate(sizeof(OMPParallelDirective) + in CreateEmpty() 1170 llvm::alignOf<OMPParallelDirective>()); in CreateEmpty() 1171 return new (Mem) OMPParallelDirective(N); in CreateEmpty()
|
D | StmtProfile.cpp | 279 StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
|
D | StmtPrinter.cpp | 624 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 181 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 228 return Owned(OMPParallelDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelDirective()
|
D | TreeTransform.h | 6252 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1732 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective() 2206 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1719 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 2300 DEF_TRAVERSE_STMT(OMPParallelDirective, {
|
D | CIndex.cpp | 1858 void VisitOMPParallelDirective(const OMPParallelDirective *D); 2238 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
|