Searched refs:OMPAlignedClause (Results 1 - 11 of 11) sorted by relevance

/external/clang/include/clang/AST/
H A DOpenMPClause.h1086 class OMPAlignedClause : public OMPVarListClause<OMPAlignedClause> { class in namespace:clang
1102 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, function in class:clang::OMPAlignedClause
1105 : OMPVarListClause<OMPAlignedClause>(OMPC_aligned, StartLoc, LParenLoc,
1113 explicit OMPAlignedClause(unsigned NumVars) function in class:clang::OMPAlignedClause
1114 : OMPVarListClause<OMPAlignedClause>(OMPC_aligned, SourceLocation(),
1129 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc,
1140 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
H A DDataRecursiveASTVisitor.h2420 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
H A DRecursiveASTVisitor.h2442 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
/external/clang/lib/AST/
H A DStmt.cpp1239 OMPAlignedClause *
1240 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc,
1243 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPAlignedClause),
1246 OMPAlignedClause *Clause = new (Mem)
1247 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size());
1253 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C,
1255 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPAlignedClause),
1258 return new (Mem) OMPAlignedClause(NumVars);
H A DStmtPrinter.cpp736 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) {
H A DStmtProfile.cpp335 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1727 C = OMPAlignedClause::CreateEmpty(Context, Record[Idx++]);
1860 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) {
H A DASTWriterStmt.cpp1775 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) {
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp3436 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc,
H A DTreeTransform.h6697 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) {
/external/clang/tools/libclang/
H A DCIndex.cpp1992 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) {

Completed in 1791 milliseconds