Home | History | Annotate | Download | only in func.wrap.func

Lines Matching refs:count

19     static int count;
22 ++count;
26 FunctionObject(const FunctionObject&) {++count;}
27 ~FunctionObject() {--count; ((void)data_); }
35 int FunctionObject::count = 0;
42 static int count;
45 ++count;
49 MemFunClass(const MemFunClass&) {++count; ((void)data_); }
51 ~MemFunClass() {--count;}
59 int MemFunClass::count = 0;