Lines Matching refs:value
86 std::size_t value; member
88 MoveOperationTrackerBase() : value(++value_counter) {} in MoveOperationTrackerBase()
89 explicit MoveOperationTrackerBase( const std::size_t val ) : value(val) {} in MoveOperationTrackerBase()
90 ~MoveOperationTrackerBase() { value = 0; } in ~MoveOperationTrackerBase()
92 MoveOperationTrackerBase( const MoveOperationTrackerBase& other ) : value(other.value) { in MoveOperationTrackerBase()
93 REQUIRE_MESSAGE(other.value, "The object has been moved or destroyed"); in MoveOperationTrackerBase()
97 MoveOperationTrackerBase( MoveOperationTrackerBase&& other ) noexcept : value(other.value) { in MoveOperationTrackerBase()
98 REQUIRE_MESSAGE(other.value, "The object has been moved or destroyed"); in MoveOperationTrackerBase()
99 other.value = 0; in MoveOperationTrackerBase()
104 REQUIRE_MESSAGE(other.value, "The object has been moved or destroyed"); in operator =()
105 value = other.value; in operator =()
111 REQUIRE_MESSAGE(other.value, "The object has been moved or destroyed"); in operator =()
112 value = other.value; in operator =()
113 other.value = 0; in operator =()
119 REQUIRE_MESSAGE(value, "The object has been moved or destroyed"); in operator <()
120 REQUIRE_MESSAGE(other.value, "The object has been moved or destroyed"); in operator <()
121 return value < other.value; in operator <()
566 static_assert(std::is_same<decltype(qv), TQueue<ComplexType> >::value); in TestDeductionGuides()
571 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
575 static_assert(std::is_same<decltype(qvc), TQueue<ComplexType, LessA<ComplexType>>>::value); in TestDeductionGuides()
580 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
584 static_assert(std::is_same<decltype(ql), TQueue<ComplexType>>::value); in TestDeductionGuides()
589 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
593 static_assert(std::is_same<decltype(qlc), TQueue<ComplexType, LessA<ComplexType>>>::value); in TestDeductionGuides()
598 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
602 static_assert(std::is_same<decltype(qv), decltype(qv)>::value); in TestDeductionGuides()
606 static_assert(std::is_same<decltype(qca), decltype(qva)>::value); in TestDeductionGuides()
610 static_assert(std::is_same<decltype(qm), decltype(qv)>::value); in TestDeductionGuides()
614 static_assert(std::is_same<decltype(qma), decltype(qva)>::value); in TestDeductionGuides()