Lines Matching defs:created
217 static int created = 0;
220 Foo() : fI{-2}, fX{-3} { created++; }
221 Foo(int i, float x) : fI{i}, fX{x} { created++; }
232 created = 0;
244 REPORTER_ASSERT(r, created == 1);
252 REPORTER_ASSERT(r, created == 11);
257 REPORTER_ASSERT(r, created == 11);
282 created = 0;
288 : fNext{std::move(next)} { created++; }
297 REPORTER_ASSERT(r, created == 128);
300 REPORTER_ASSERT(r, created == 128);