Home
last modified time | relevance | path

Searched refs:OMPDependClause (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/AST/
DOpenMPClause.cpp418 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()
DStmtProfile.cpp450 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
DStmtPrinter.cpp875 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { in VisitOMPDependClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2421 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);
DRecursiveASTVisitor.h2723 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def163 OPENMP_CLAUSE(depend, OMPDependClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1848 C = OMPDependClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2165 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
DASTWriterStmt.cpp1980 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1944 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) { in EmitOMPTaskDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp4583 if (auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPOrderedDirective()
8059 return OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, DepKind, in ActOnOpenMPDependClause()
DTreeTransform.h7763 TreeTransform<Derived>::TransformOMPDependClause(OMPDependClause *C) { in TransformOMPDependClause()
/external/clang/tools/libclang/
DCIndex.cpp2207 void OMPClauseEnqueue::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()