Home
last modified time | relevance | path

Searched refs:OMPTeamsDirective (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/AST/
DStmtOpenMP.h1774 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,
DDataRecursiveASTVisitor.h2371 DEF_TRAVERSE_STMT(OMPTeamsDirective,
DRecursiveASTVisitor.h2401 DEF_TRAVERSE_STMT(OMPTeamsDirective,
/external/clang/lib/AST/
DStmt.cpp2146 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()
DStmtProfile.cpp525 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { in VisitOMPTeamsDirective()
DStmtPrinter.cpp931 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { in VisitOMPTeamsDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td204 def OMPTeamsDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1691 void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &) { in EmitOMPTeamsDirective() argument
DCGStmt.cpp238 EmitOMPTeamsDirective(cast<OMPTeamsDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2140 void EmitOMPTeamsDirective(const OMPTeamsDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2215 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
2809 S = OMPTeamsDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2075 void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
/external/clang/tools/libclang/
DCIndex.cpp1886 void VisitOMPTeamsDirective(const OMPTeamsDirective *D);
2496 void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) { in VisitOMPTeamsDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp4008 return OMPTeamsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTeamsDirective()
DTreeTransform.h6924 TreeTransform<Derived>::TransformOMPTeamsDirective(OMPTeamsDirective *D) { in TransformOMPTeamsDirective()