Home | History | Annotate | Download | only in core

Lines Matching full:classname

30 #define SK_DECLARE_INST_COUNT(className)                                    \
31 SK_DECLARE_INST_COUNT_INTERNAL(className, \
35 #define SK_DECLARE_INST_COUNT_TEMPLATE(className) \
36 SK_DECLARE_INST_COUNT_INTERNAL(className, \
42 #define SK_DECLARE_INST_COUNT_ROOT(className) \
43 SK_DECLARE_INST_COUNT_INTERNAL(className, atexit(exitPrint);, /**/)
45 #define SK_DECLARE_INST_COUNT_INTERNAL(className, initStep, templateType) \
82 4*level, ' ', #className, \
112 #define SK_DEFINE_INST_COUNT(className) \
113 int32_t className::SkInstanceCountHelper::gInstanceCount = 0; \
114 bool className::SkInstanceCountHelper::gInited = false; \
115 SkTArray<className::SkInstanceCountHelper::PFCheckInstCnt>* \
116 className::SkInstanceCountHelper::gChildren = NULL;
118 #define SK_DEFINE_INST_COUNT_TEMPLATE(templateInfo, className) \
119 templateInfo int32_t className::SkInstanceCountHelper::gInstanceCount = 0;\
120 templateInfo bool className::SkInstanceCountHelper::gInited = false; \
122 SkTArray<typename className::SkInstanceCountHelper::PFCheckInstCnt>*\
123 className::SkInstanceCountHelper::gChildren = NULL;
126 #define SK_DECLARE_INST_COUNT(className)
127 #define SK_DECLARE_INST_COUNT_TEMPLATE(className)
128 #define SK_DECLARE_INST_COUNT_ROOT(className)
129 #define SK_DEFINE_INST_COUNT(className)
130 #define SK_DEFINE_INST_COUNT_TEMPLATE(templateInfo, className)