Searched refs:OMPTeamsDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1774 class OMPTeamsDirective : public OMPExecutableDirective { 1782 OMPTeamsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTeamsDirective() function 1791 explicit OMPTeamsDirective(unsigned NumClauses) in OMPTeamsDirective() function 1805 static OMPTeamsDirective *Create(const ASTContext &C, SourceLocation StartLoc, 1816 static OMPTeamsDirective *CreateEmpty(const ASTContext &C,
|
D | DataRecursiveASTVisitor.h | 2371 DEF_TRAVERSE_STMT(OMPTeamsDirective,
|
D | RecursiveASTVisitor.h | 2401 DEF_TRAVERSE_STMT(OMPTeamsDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 2146 OMPTeamsDirective *OMPTeamsDirective::Create(const ASTContext &C, in Create() 2151 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTeamsDirective), in Create() 2155 OMPTeamsDirective *Dir = in Create() 2156 new (Mem) OMPTeamsDirective(StartLoc, EndLoc, Clauses.size()); in Create() 2162 OMPTeamsDirective *OMPTeamsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 2165 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTeamsDirective), in CreateEmpty() 2169 return new (Mem) OMPTeamsDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 525 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { in VisitOMPTeamsDirective()
|
D | StmtPrinter.cpp | 931 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { in VisitOMPTeamsDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 204 def OMPTeamsDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1691 void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &) { in EmitOMPTeamsDirective() argument
|
D | CGStmt.cpp | 238 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2140 void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2215 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective() 2809 S = OMPTeamsDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2075 void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1886 void VisitOMPTeamsDirective(const OMPTeamsDirective *D); 2496 void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 4008 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTeamsDirective()
|
D | TreeTransform.h | 6924 TreeTransform<Derived>::TransformOMPTeamsDirective(OMPTeamsDirective *D) { in TransformOMPTeamsDirective()
|