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

  /external/clang/lib/AST/
Stmt.cpp 123 else if (const AttributedStmt *AS = dyn_cast<AttributedStmt>(S))
285 AttributedStmt *AttributedStmt::Create(ASTContext &C, SourceLocation Loc,
288 void *Mem = C.Allocate(sizeof(AttributedStmt) +
290 llvm::alignOf<AttributedStmt>());
291 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
294 AttributedStmt *AttributedStmt::CreateEmpty(ASTContext &C, unsigned NumAttrs) {
296 void *Mem = C.Allocate(sizeof(AttributedStmt)
    [all...]
ASTDumper.cpp 249 void VisitAttributedStmt(const AttributedStmt *Node);
    [all...]
StmtPrinter.cpp 174 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) {
    [all...]
StmtProfile.cpp 112 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) {
    [all...]
ExprConstant.cpp     [all...]
  /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) {
826 static const AttributedStmt *asFallThroughAttr(const Stmt *S) {
827 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) {
    [all...]
SemaStmt.cpp 427 AttributedStmt *LS = AttributedStmt::Create(Context, AttrLoc, Attrs, SubStmt);
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/AST/
Stmt.h 799 class AttributedStmt : public Stmt {
807 AttributedStmt(SourceLocation Loc, ArrayRef<const Attr*> Attrs, Stmt *SubStmt)
813 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs)
819 static AttributedStmt *Create(ASTContext &C, SourceLocation Loc,
822 static AttributedStmt *CreateEmpty(ASTContext &C, unsigned NumAttrs);
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 183 EmitAttributedStmt(cast<AttributedStmt>(*S)); break;
390 void CodeGenFunction::EmitAttributedStmt(const AttributedStmt &S) {
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 171 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) {
    [all...]
ASTWriterStmt.cpp 111 void ASTStmtWriter::VisitAttributedStmt(AttributedStmt *S) {
    [all...]

Completed in 495 milliseconds