Home
last modified time | relevance | path

Searched refs:ConstructionCounting (Results 1 – 1 of 1) sorted by relevance

/src/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc7596 struct ConstructionCounting { struct
7597 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() argument
7598 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument
7599 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() function
7600 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() argument
7601 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument
7605 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument
7627 int ConstructionCounting::default_ctor_calls = 0; argument
7628 int ConstructionCounting::dtor_calls = 0;
7629 int ConstructionCounting::copy_ctor_calls = 0;
[all …]