HomeSort by relevance Sort by last modified time
    Searched refs:AttributedStmt (Results 1 - 14 of 14) sorted by null

  /external/clang/lib/AST/
Stmt.cpp 122 else if (const AttributedStmt *AS = dyn_cast<AttributedStmt>(S))
284 AttributedStmt *AttributedStmt::Create(ASTContext &C, SourceLocation Loc,
287 void *Mem = C.Allocate(sizeof(AttributedStmt) +
289 llvm::alignOf<AttributedStmt>());
290 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
293 AttributedStmt *AttributedStmt::CreateEmpty(ASTContext &C, unsigned NumAttrs) {
295 void *Mem = C.Allocate(sizeof(AttributedStmt)
    [all...]
StmtPrinter.cpp 174 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) {
    [all...]
ASTDumper.cpp 244 void VisitAttributedStmt(const AttributedStmt *Node);
    [all...]
StmtProfile.cpp 112 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) {
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 694 void markFallthroughVisited(const AttributedStmt *Stmt) {
700 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts;
766 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) {
788 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) {
809 bool VisitAttributedStmt(AttributedStmt *S) {
822 static const AttributedStmt *asFallThroughAttr(const Stmt *S) {
823 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) {
    [all...]
SemaStmt.cpp 413 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt);
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/AST/
Stmt.h 806 class AttributedStmt : public Stmt {
814 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr*> Attrs, Stmt *SubStmt)
820 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
826 static AttributedStmt *Create(ASTContext &C, SourceLocation Loc,
829 static AttributedStmt *CreateEmpty(ASTContext &C, unsigned NumAttrs);
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 179 EmitAttributedStmt(cast<AttributedStmt>(*S)); break;
349 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) {
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 161 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) {
    [all...]
ASTWriterStmt.cpp 108 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) {
    [all...]

Completed in 36 milliseconds