Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
Dassign_tuple.pass.cpp29 struct CountingType { struct
40 CountingType() : value(0) { ++constructed; } in CountingType() argument
41 CountingType(int v) : value(v) { ++constructed; } in CountingType() argument
42 CountingType(CountingType const& o) : value(o.value) { ++constructed; ++copy_constructed; } in CountingType() argument
43CountingType(CountingType&& o) : value(o.value) { ++constructed; ++move_constructed; o.value = -1;} in CountingType() argument
45 CountingType& operator=(CountingType const& o) { in operator =() argument
51 CountingType& operator=(CountingType&& o) { in operator =() argument
60 int CountingType::constructed; argument