Searched refs:OMPParallelDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 224 class OMPParallelDirective : public OMPExecutableDirective { 230 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function 239 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function 253 static OMPParallelDirective * 262 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
|
D | DataRecursiveASTVisitor.h | 2309 DEF_TRAVERSE_STMT(OMPParallelDirective,
|
D | RecursiveASTVisitor.h | 2339 DEF_TRAVERSE_STMT(OMPParallelDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1597 OMPParallelDirective *OMPParallelDirective::Create( in Create() 1603 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelDirective), in Create() 1607 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc, in Create() 1614 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 1617 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelDirective), in CreateEmpty() 1621 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 441 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
|
D | StmtPrinter.cpp | 824 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 184 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 519 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
|
D | CGStmt.cpp | 178 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2120 void EmitOMPParallelDirective(const OMPParallelDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2095 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective() 2700 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1943 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1866 void VisitOMPParallelDirective(const OMPParallelDirective *D); 2411 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 1908 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPParallelDirective()
|
D | TreeTransform.h | 6705 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
|