HomeSort by: relevance | last modified time | path
    Searched refs:AttributedStmt (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 147 if (const auto *AS = dyn_cast_or_null<AttributedStmt>(S))
201 if (auto AS = dyn_cast_or_null<AttributedStmt>(S))
224 else if (const auto *AS = dyn_cast<AttributedStmt>(S))
403 else if (const auto *AS = dyn_cast<AttributedStmt>(S))
416 AttributedStmt *AttributedStmt::Create(const ASTContext &C, SourceLocation Loc,
421 alignof(AttributedStmt));
422 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
425 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C
    [all...]
StmtPrinter.cpp 229 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) {
StmtProfile.cpp 258 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) {
ASTImporter.cpp 548 ExpectedStmt VisitAttributedStmt(AttributedStmt *S);
6182 ExpectedStmt ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) {
6194 return AttributedStmt::Create(
ExprConstant.cpp 5398 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(),
  /src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp 76 SmallVector<AttributedStmt *, 4> MustTailStmts;
98 const Attr *GetMustTailAttr(AttributedStmt *AS);
593 AttributedStmt *AS = cast<AttributedStmt>(S);
996 for (AttributedStmt *AS : MustTailStmts) {
1006 const Attr *JumpScopeChecker::GetMustTailAttr(AttributedStmt *AS) {
AnalysisBasedWarnings.cpp 1052 void markFallthroughVisited(const AttributedStmt *Stmt) {
1058 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts;
1122 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) {
1148 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) {
1169 bool VisitAttributedStmt(AttributedStmt *S) {
1194 static const AttributedStmt *asFallThroughAttr(const Stmt *S) {
1195 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) {
SemaStmt.cpp 579 return AttributedStmt::Create(Context, AttrsLoc, Attrs, SubStmt);
589 // returning the substatement directly instead of making an AttributedStmt
TreeTransform.h 7314 TreeTransform<Derived>::TransformAttributedStmt(AttributedStmt *S,
7335 // statement, don't make an AttributedStmt without attributes.
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 146 friend class AttributedStmt;
1845 class AttributedStmt final
1847 private llvm::TrailingObjects<AttributedStmt, const Attr *> {
1853 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr *> Attrs,
1861 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
1874 static AttributedStmt *Create(const ASTContext &C, SourceLocation Loc,
1878 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
ASTNodeTraverser.h 652 void VisitAttributedStmt(const AttributedStmt *Node) {
RecursiveASTVisitor.h 2259 DEF_TRAVERSE_STMT(AttributedStmt, {})
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 409 EmitAttributedStmt(cast<AttributedStmt>(*S));
469 } else if (const auto *AS = dyn_cast<AttributedStmt>(ExprResult)) {
657 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) {
CoverageMappingGen.cpp 974 if (LastStmt && HasTerminateStmt && !dyn_cast<AttributedStmt>(Child)) {
CGStmtOpenMP.cpp 2046 const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(SS);
CodeGenFunction.h 3179 void EmitAttributedStmt(const AttributedStmt &S);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 197 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) {
199 // NumAttrs in AttributedStmt is set when creating an empty
200 // AttributedStmt in AttributedStmt::CreateEmpty, since it is needed
2727 S = AttributedStmt::CreateEmpty(
ASTWriterStmt.cpp 125 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) {

Completed in 85 milliseconds