Searched refs:AttributedStmt (Results 1 – 16 of 16) sorted by relevance
/external/clang/lib/AST/ |
D | Stmt.cpp | 123 else if (const AttributedStmt *AS = dyn_cast<AttributedStmt>(S)) in stripLabelLikeStatements() 285 AttributedStmt *AttributedStmt::Create(ASTContext &C, SourceLocation Loc, in Create() 288 void *Mem = C.Allocate(sizeof(AttributedStmt) + in Create() 290 llvm::alignOf<AttributedStmt>()); in Create() 291 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create() 294 AttributedStmt *AttributedStmt::CreateEmpty(ASTContext &C, unsigned NumAttrs) { in CreateEmpty() 296 void *Mem = C.Allocate(sizeof(AttributedStmt) + in CreateEmpty() 298 llvm::alignOf<AttributedStmt>()); in CreateEmpty() 299 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
|
D | ASTDumper.cpp | 249 void VisitAttributedStmt(const AttributedStmt *Node); 1437 void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
|
D | StmtProfile.cpp | 112 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
|
D | StmtPrinter.cpp | 174 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
|
D | ExprConstant.cpp | 3365 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
|
/external/clang/lib/Sema/ |
D | AnalysisBasedWarnings.cpp | 694 void markFallthroughVisited(const AttributedStmt *Stmt) { in markFallthroughVisited() 700 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts; 766 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) { in checkFallThroughIntoBlock() 788 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) { in checkFallThroughIntoBlock() 809 bool VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 826 static const AttributedStmt *asFallThroughAttr(const Stmt *S) { in asFallThroughAttr() 827 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) { in asFallThroughAttr()
|
D | SemaStmt.cpp | 427 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt); in ActOnAttributedStmt()
|
D | TreeTransform.h | 5353 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S) { in TransformAttributedStmt()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 15 def AttributedStmt : Stmt;
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 799 class AttributedStmt : public Stmt { 807 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr*> Attrs, Stmt *SubStmt) in AttributedStmt() function 813 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() function 819 static AttributedStmt *Create(ASTContext &C, SourceLocation Loc, 822 static AttributedStmt *CreateEmpty(ASTContext &C, unsigned NumAttrs);
|
D | RecursiveASTVisitor.h | 2021 DEF_TRAVERSE_STMT(AttributedStmt, { })
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 183 EmitAttributedStmt(cast<AttributedStmt>(*S)); break; in EmitSimpleStmt() 390 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
|
D | CodeGenFunction.h | 1817 void EmitAttributedStmt(const AttributedStmt &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 171 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 1845 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 111 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 1936 DEF_TRAVERSE_STMT(AttributedStmt, { })
|