Searched refs:OMPDependClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 418 OMPDependClause * 419 OMPDependClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 423 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPDependClause), in Create() 426 OMPDependClause *Clause = in Create() 427 new (Mem) OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 435 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 436 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPDependClause), in CreateEmpty() 439 return new (Mem) OMPDependClause(N); in CreateEmpty()
|
D | StmtProfile.cpp | 450 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|
D | StmtPrinter.cpp | 875 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { in VisitOMPDependClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2421 class OMPDependClause : public OMPVarListClause<OMPDependClause> { 2436 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDependClause() function 2438 : OMPVarListClause<OMPDependClause>(OMPC_depend, StartLoc, LParenLoc, in OMPDependClause() 2446 explicit OMPDependClause(unsigned N) in OMPDependClause() function 2447 : OMPVarListClause<OMPDependClause>(OMPC_depend, SourceLocation(), in OMPDependClause() 2472 static OMPDependClause * 2481 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | RecursiveASTVisitor.h | 2723 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 163 OPENMP_CLAUSE(depend, OMPDependClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1848 C = OMPDependClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2165 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
D | ASTWriterStmt.cpp | 1980 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1944 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) { in EmitOMPTaskDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 4583 if (auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPOrderedDirective() 8059 return OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, DepKind, in ActOnOpenMPDependClause()
|
D | TreeTransform.h | 7763 TreeTransform<Derived>::TransformOMPDependClause(OMPDependClause *C) { in TransformOMPDependClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2207 void OMPClauseEnqueue::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|