Lines Matching refs:DERIVED
39 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; argument
74 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; in getDeclKindName() argument
93 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; in getDeclKindName() argument
108 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; in PrintStats() argument
114 #define DECL(DERIVED, BASE) \ in PrintStats() argument
115 if (n##DERIVED##s > 0) { \ in PrintStats()
116 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ in PrintStats()
117 llvm::errs() << " " << n##DERIVED##s << " " #DERIVED " decls, " \ in PrintStats()
118 << sizeof(DERIVED##Decl) << " each (" \ in PrintStats()
119 << n##DERIVED##s * sizeof(DERIVED##Decl) \ in PrintStats()
130 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break; in add() argument