Lines Matching refs:NumberOfFoo
49 int NumberOfFoo; variable
56 ++NumberOfFoo; in Foo()
65 ++NumberOfFoo;
70 --NumberOfFoo; in ~Foo()
145 int n = NumberOfFoo; in TestBrokenAllocator()
148 REQUIRE_MESSAGE(NumberOfFoo == n + 1, "constructor for Foo not called?"); in TestBrokenAllocator()
152 REQUIRE_MESSAGE(NumberOfFoo == n, "destructor for Foo not called?"); in TestBrokenAllocator()
158 int NumberOfFooBeforeConstruct = NumberOfFoo; in TestBrokenAllocator()
161 …REQUIRE_MESSAGE(NumberOfFoo == NumberOfFooBeforeConstruct+2, "constructor for Foo not called appro… in TestBrokenAllocator()
164 …REQUIRE_MESSAGE(NumberOfFoo == NumberOfFooBeforeConstruct, "destructor for Foo not called appropri… in TestBrokenAllocator()
295 NumberOfFoo = 0;
333 REQUIRE_MESSAGE(NumberOfFoo == 0, "Allocate/deallocate count mismatched");