Searched refs:OMPAlignedClause (Results 1 – 12 of 12) sorted by relevance
/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/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 200 OPENMP_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/clang/tools/libclang/ |
D | CIndex.cpp | 2229 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()
|