Home
last modified time | relevance | path

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

/dports/devel/folly/folly-2021.12.27.00/folly/container/test/
H A DTrackingTypes.h32 struct MoveOnlyTestInt { struct
36 MoveOnlyTestInt() noexcept : x(0) {} in MoveOnlyTestInt() argument
37 /* implicit */ MoveOnlyTestInt(int x0) : x(x0) {} in MoveOnlyTestInt() function
38 MoveOnlyTestInt(MoveOnlyTestInt&& rhs) noexcept : x(rhs.x) {} in MoveOnlyTestInt() argument
39 MoveOnlyTestInt(MoveOnlyTestInt const&) = delete;
40 MoveOnlyTestInt& operator=(MoveOnlyTestInt&& rhs) noexcept {
45 MoveOnlyTestInt& operator=(MoveOnlyTestInt const&) = delete; argument
47 ~MoveOnlyTestInt() { in ~MoveOnlyTestInt() argument
53 bool operator==(MoveOnlyTestInt const& rhs) const {
556 struct hash<folly::test::MoveOnlyTestInt> {
[all …]
H A DF14MapTest.cpp1452 runMoveOnlyTest<F14ValueMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
1456 runMoveOnlyTest<F14NodeMap<MoveOnlyTestInt, int>>(); in TEST()
1457 runMoveOnlyTest<F14NodeMap<int, MoveOnlyTestInt>>(); in TEST()
1458 runMoveOnlyTest<F14NodeMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
1464 runMoveOnlyTest<F14VectorMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
1468 runMoveOnlyTest<F14FastMap<MoveOnlyTestInt, int>>(); in TEST()
1470 runMoveOnlyTest<F14FastMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
1519 runEraseIntoTest<F14ValueMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
1523 runEraseIntoTest<F14NodeMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
1527 runEraseIntoTest<F14VectorMap<MoveOnlyTestInt, MoveOnlyTestInt>>(); in TEST()
[all …]
H A DF14SetTest.cpp1080 runMoveOnlyTest<F14ValueSet<MoveOnlyTestInt>>(); in TEST()
1084 runMoveOnlyTest<F14NodeSet<MoveOnlyTestInt>>(); in TEST()
1088 runMoveOnlyTest<F14VectorSet<MoveOnlyTestInt>>(); in TEST()
1092 runMoveOnlyTest<F14FastSet<MoveOnlyTestInt>>(); in TEST()
1144 runEraseIntoTest<F14ValueSet<MoveOnlyTestInt>>(); in TEST()
1148 runEraseIntoTest<F14NodeSet<MoveOnlyTestInt>>(); in TEST()
1152 runEraseIntoTest<F14VectorSet<MoveOnlyTestInt>>(); in TEST()
1156 runEraseIntoTest<F14FastSet<MoveOnlyTestInt>>(); in TEST()