Searched defs:Counted (Results 1 – 10 of 10) sorted by relevance
24 struct Counted { struct27 Counted() { ++count; } in Counted() argument28 Counted(Counted const&) { ++count; } in Counted() function29 ~Counted() { --count; } in ~Counted() argument
21 struct Counted { struct24 Counted() { ++count; } in Counted() argument25 Counted(Counted const&) { ++count; } in Counted() argument26 ~Counted() { --count; } in ~Counted() argument
24 struct Counted { struct28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; } in Counted() argument29 Counted(Counted const&) { assert(false); } in Counted() argument30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument34 int Counted::count = 0; argument
24 struct Counted { struct28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; } in Counted() function29 Counted(Counted const&) { assert(false); } in Counted() argument30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument34 int Counted::count = 0; argument
24 struct Counted { struct28 explicit Counted() { ++count; ++constructed; } in Counted() argument29 Counted(Counted const&) { assert(false); } in Counted() function30 ~Counted() { --count; } in ~Counted() argument
24 struct Counted { struct28 explicit Counted() { ++count; ++constructed; } in Counted() argument29 Counted(Counted const&) { assert(false); } in Counted() function30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument
24 struct Counted { struct28 explicit Counted() { ++count; ++constructed; } in Counted() argument29 Counted(Counted const&) { assert(false); } in Counted() argument30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument
1094 class Counted(object): class