Home
last modified time | relevance | path

Searched defs:ConstructorCounted (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dbtree_test.cc2561 struct ConstructorCounted { struct
2562 explicit ConstructorCounted(int i) : i(i) { ++constructor_calls; } in ConstructorCounted() function
2563 bool operator==(int other) const { return i == other; } in operator ==()
2565 int i;
2566 static int constructor_calls;