Home | History | Annotate | Download | only in uninitialized.construct.value

Lines Matching refs:constructed

26   static int constructed;
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0;
38 static int constructed;
40 static void reset() { throw_after = count = constructed = 0; }
42 ++constructed;
53 int ThrowsCounted::constructed = 0;
69 assert(ThrowsCounted::constructed == 4); // forth construction throws
84 assert(Counted::constructed == 1);
88 assert(Counted::constructed == 5);