Home
last modified time | relevance | path

Searched refs:AttributedStmt (Results 1 – 16 of 16) sorted by relevance

/external/clang/lib/AST/
DStmt.cpp123 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()
DASTDumper.cpp249 void VisitAttributedStmt(const AttributedStmt *Node);
1437 void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
DStmtProfile.cpp112 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
DStmtPrinter.cpp174 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
DExprConstant.cpp3365 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp694 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()
DSemaStmt.cpp427 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt); in ActOnAttributedStmt()
DTreeTransform.h5353 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S) { in TransformAttributedStmt()
/external/clang/include/clang/Basic/
DStmtNodes.td15 def AttributedStmt : Stmt;
/external/clang/include/clang/AST/
DStmt.h799 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);
DRecursiveASTVisitor.h2021 DEF_TRAVERSE_STMT(AttributedStmt, { })
/external/clang/lib/CodeGen/
DCGStmt.cpp183 EmitAttributedStmt(cast<AttributedStmt>(*S)); break; in EmitSimpleStmt()
390 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
DCodeGenFunction.h1817 void EmitAttributedStmt(const AttributedStmt &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp171 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
1845 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp111 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h1936 DEF_TRAVERSE_STMT(AttributedStmt, { })