Searched defs:ConstructorCounted (Results 1 – 7 of 7) sorted by relevance
2522 struct ConstructorCounted { struct2523 explicit ConstructorCounted(int i) : i(i) { ++constructor_calls; } in ConstructorCounted() argument2524 bool operator==(int other) const { return i == other; } in operator ==()2526 int i;2527 static int constructor_calls;
2618 struct ConstructorCounted { struct2619 explicit ConstructorCounted(int i) : i(i) { ++constructor_calls; } in ConstructorCounted() argument2620 bool operator==(int other) const { return i == other; } in operator ==()2622 int i;2623 static int constructor_calls;
2550 struct ConstructorCounted { struct2551 explicit ConstructorCounted(int i) : i(i) { ++constructor_calls; } in ConstructorCounted() function2552 bool operator==(int other) const { return i == other; } in operator ==()2554 int i;2555 static int constructor_calls;
2701 struct ConstructorCounted { struct2702 explicit ConstructorCounted(int i) : i(i) { ++constructor_calls; } in ConstructorCounted() function2703 bool operator==(int other) const { return i == other; } in operator ==()2705 int i;2706 static int constructor_calls;