Searched refs:AttributedStmt (Results 1 – 17 of 17) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Stmt.cpp | 153 if (auto AS = dyn_cast_or_null<AttributedStmt>(S)) in IgnoreContainers() 176 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in stripLabelLikeStatements() 352 AttributedStmt *AttributedStmt::Create(const ASTContext &C, SourceLocation Loc, in Create() 357 alignof(AttributedStmt)); in Create() 358 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create() 361 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() 365 alignof(AttributedStmt)); in CreateEmpty() 366 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
|
| H A D | ASTDumper.cpp | 291 void VisitAttributedStmt(const AttributedStmt *Node); 1426 void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
|
| H A D | StmtProfile.cpp | 258 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
|
| H A D | StmtPrinter.cpp | 233 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
|
| H A D | ASTImporter.cpp | 519 ExpectedStmt VisitAttributedStmt(AttributedStmt *S); 5701 ExpectedStmt ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 5713 return AttributedStmt::Create( in VisitAttributedStmt()
|
| H A D | ExprConstant.cpp | 4303 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 1023 void markFallthroughVisited(const AttributedStmt *Stmt) { in markFallthroughVisited() 1029 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts; 1093 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) { in checkFallThroughIntoBlock() 1119 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) { in checkFallThroughIntoBlock() 1140 bool VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 1165 static const AttributedStmt *asFallThroughAttr(const Stmt *S) { in asFallThroughAttr() 1166 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) { in asFallThroughAttr()
|
| H A D | SemaStmt.cpp | 519 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt); in ActOnAttributedStmt()
|
| H A D | TreeTransform.h | 6643 StmtResult TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S) { in TransformAttributedStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Stmt.h | 142 friend class AttributedStmt; in alignas() local 1633 class AttributedStmt final 1635 private llvm::TrailingObjects<AttributedStmt, const Attr *> { 1641 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr *> Attrs, in AttributedStmt() function 1649 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() function 1662 static AttributedStmt *Create(const ASTContext &C, SourceLocation Loc, 1666 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
|
| H A D | StmtDataCollectors.td | 236 class AttributedStmt {
|
| H A D | RecursiveASTVisitor.h | 2171 DEF_TRAVERSE_STMT(AttributedStmt, {})
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 15 def AttributedStmt : Stmt;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 355 EmitAttributedStmt(cast<AttributedStmt>(*S)); break; in EmitSimpleStmt() 564 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
|
| H A D | CodeGenFunction.h | 2857 void EmitAttributedStmt(const AttributedStmt &S);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 203 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 2379 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 123 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
|