Searched refs:CountCopyAndMove (Results 1 – 4 of 4) sorted by relevance
150 struct CountCopyAndMove { struct156 CountCopyAndMove(const CountCopyAndMove &RHS) { in CountCopyAndMove() argument160 CountCopyAndMove &operator=(const CountCopyAndMove &RHS) { in operator =() argument165 CountCopyAndMove(CountCopyAndMove &&RHS) { in CountCopyAndMove() function169 CountCopyAndMove &operator=(const CountCopyAndMove &&RHS) { in operator =() argument175 int CountCopyAndMove::Copy = 0;176 int CountCopyAndMove::Move = 0;182 static inline CountCopyAndMove getEmptyKey() { return CountCopyAndMove(-1); }; in getEmptyKey()184 return CountCopyAndMove(-2); in getTombstoneKey()208 CountCopyAndMove::Copy = 0; in TEST()[all …]
334 struct CountCopyAndMove { struct337 CountCopyAndMove() {} in CountCopyAndMove() function339 CountCopyAndMove(const CountCopyAndMove &) { Copy++; } in CountCopyAndMove() function340 CountCopyAndMove &operator=(const CountCopyAndMove &) { in operator =() argument344 CountCopyAndMove(CountCopyAndMove &&) { Move++; } in CountCopyAndMove() argument345 CountCopyAndMove &operator=(const CountCopyAndMove &&) { in operator =() argument350 int CountCopyAndMove::Copy = 0;387 CountCopyAndMove::Copy = 0; in TEST()388 CountCopyAndMove::Move = 0; in TEST()448 CountCopyAndMove::Move = 0; in TEST()[all …]
83 struct CountCopyAndMove { struct84 CountCopyAndMove() = default;85 CountCopyAndMove(const CountCopyAndMove &) { copy = 1; } in CountCopyAndMove() function86 CountCopyAndMove(CountCopyAndMove &&) { move = 1; } in CountCopyAndMove() function87 void operator=(const CountCopyAndMove &) { ++copy; } in operator =() argument88 void operator=(CountCopyAndMove &&) { ++move; } in operator =() argument296 struct A : CountCopyAndMove { in TEST_F()
327 struct CountCopyAndMove { struct330 CountCopyAndMove() {} in CountCopyAndMove() argument332 CountCopyAndMove(const CountCopyAndMove &) { Copy++; } in CountCopyAndMove() argument333 CountCopyAndMove &operator=(const CountCopyAndMove &) { in operator =() argument337 CountCopyAndMove(CountCopyAndMove &&) { Move++; } in CountCopyAndMove() argument338 CountCopyAndMove &operator=(const CountCopyAndMove &&) { in operator =() argument343 int CountCopyAndMove::Copy = 0;379 CountCopyAndMove::Copy = 0; in TEST()380 CountCopyAndMove::Move = 0; in TEST()439 CountCopyAndMove::Move = 0; in TEST()[all …]