/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 350 OMPAlignedClause * 351 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 355 OMPAlignedClause *Clause = new (Mem) in Create() 356 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size()); in Create() 362 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 365 return new (Mem) OMPAlignedClause(NumVars); in CreateEmpty()
|
D | StmtProfile.cpp | 452 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
D | StmtPrinter.cpp | 852 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2110 class OMPAlignedClause final 2111 : public OMPVarListClause<OMPAlignedClause>, 2112 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 2130 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 2133 : OMPVarListClause<OMPAlignedClause>(OMPC_aligned, StartLoc, LParenLoc, in OMPAlignedClause() 2141 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 2142 : OMPVarListClause<OMPAlignedClause>(OMPC_aligned, SourceLocation(), in OMPAlignedClause() 2157 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 2168 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
|
D | RecursiveASTVisitor.h | 2808 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
/external/llvm-project/clang/lib/AST/ |
D | OpenMPClause.cpp | 591 OMPAlignedClause * 592 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 596 OMPAlignedClause *Clause = new (Mem) in Create() 597 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size()); in Create() 603 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 606 return new (Mem) OMPAlignedClause(NumVars); in CreateEmpty() 1890 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
D | StmtProfile.cpp | 703 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/external/llvm-project/clang/include/clang/AST/ |
D | OpenMPClause.h | 3820 class OMPAlignedClause final 3821 : public OMPVarListClause<OMPAlignedClause>, 3822 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 3840 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 3843 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause() 3850 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 3851 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause() 3865 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 3875 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 3895 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
|
D | RecursiveASTVisitor.h | 3265 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 200 OPENMP_CLAUSE(aligned, OMPAlignedClause)
|
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
D | OMP.td | 91 let clangClass = "OMPAlignedClause";
|
D | OMPKinds.def | 61 __OMP_CLAUSE(aligned, OMPAlignedClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1859 C = OMPAlignedClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2177 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
D | ASTWriterStmt.cpp | 1976 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1395 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 11960 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause() 12481 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
D | ASTWriter.cpp | 6512 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2229 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 2000 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2453 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 9898 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
|
D | TreeTransform.h | 7935 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 9471 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|
D | SemaOpenMP.cpp | 16105 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
|