Searched refs:AttributedStmt (Results 1 – 17 of 17) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | Stmt.cpp | 140 if (auto AS = dyn_cast_or_null<AttributedStmt>(S)) in IgnoreContainers() 163 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in stripLabelLikeStatements() 343 else if (const auto *AS = dyn_cast<AttributedStmt>(S)) in getExprStmt() 356 AttributedStmt *AttributedStmt::Create(const ASTContext &C, SourceLocation Loc, in Create() 361 alignof(AttributedStmt)); in Create() 362 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create() 365 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() 369 alignof(AttributedStmt)); in CreateEmpty() 370 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
|
| HD | StmtProfile.cpp | 257 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt()
|
| HD | StmtPrinter.cpp | 233 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
|
| HD | ASTImporter.cpp | 560 ExpectedStmt VisitAttributedStmt(AttributedStmt *S); 6019 ExpectedStmt ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 6031 return AttributedStmt::Create( in VisitAttributedStmt()
|
| HD | ExprConstant.cpp | 4842 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), in EvaluateStmt()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ |
| HD | AnalysisBasedWarnings.cpp | 1042 void markFallthroughVisited(const AttributedStmt *Stmt) { in markFallthroughVisited() 1048 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts; 1112 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) { in checkFallThroughIntoBlock() 1138 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) { in checkFallThroughIntoBlock() 1159 bool VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 1184 static const AttributedStmt *asFallThroughAttr(const Stmt *S) { in asFallThroughAttr() 1185 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) { in asFallThroughAttr()
|
| HD | SemaStmt.cpp | 544 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt); in ActOnAttributedStmt()
|
| HD | TreeTransform.h | 6908 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S, in TransformAttributedStmt()
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ |
| HD | Stmt.h | 150 friend class AttributedStmt; in alignas() local 1791 class AttributedStmt final 1793 private llvm::TrailingObjects<AttributedStmt, const Attr *> { 1799 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr *> Attrs, in AttributedStmt() function 1807 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() function 1820 static AttributedStmt *Create(const ASTContext &C, SourceLocation Loc, 1824 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
|
| HD | StmtDataCollectors.td | 236 class AttributedStmt {
|
| HD | ASTNodeTraverser.h | 620 void VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
|
| HD | RecursiveASTVisitor.h | 2238 DEF_TRAVERSE_STMT(AttributedStmt, {})
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| HD | StmtNodes.td | 32 def AttributedStmt : StmtNode<ValueStmt>;
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CGStmt.cpp | 372 EmitAttributedStmt(cast<AttributedStmt>(*S)); break; in EmitSimpleStmt() 420 } else if (const auto *AS = dyn_cast<AttributedStmt>(ExprResult)) { in EmitCompoundStmtWithoutScope() 603 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) { in EmitAttributedStmt()
|
| HD | CodeGenFunction.h | 2881 void EmitAttributedStmt(const AttributedStmt &S);
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 193 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt() 2661 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
|
| HD | ASTWriterStmt.cpp | 124 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) { in VisitAttributedStmt()
|