Lines Matching refs:value
44 static_assert(std::is_same<typename default_container_type::hasher, std::hash<int>>::value, in test_member_types()
46 … static_assert(std::is_same<typename default_container_type::key_equal, std::equal_to<int>>::value, in test_member_types()
48 …::is_same<typename default_container_type::allocator_type, oneapi::tbb::tbb_allocator<int>>::value, in test_member_types()
57 static_assert(std::is_same<typename container_type::key_type, int>::value, in test_member_types()
59 static_assert(std::is_same<typename container_type::value_type, int>::value, in test_member_types()
62 static_assert(std::is_unsigned<typename container_type::size_type>::value, in test_member_types()
64 static_assert(std::is_signed<typename container_type::difference_type>::value, in test_member_types()
67 static_assert(std::is_same<typename container_type::hasher, decltype(test_hasher)>::value, in test_member_types()
69 static_assert(std::is_same<typename container_type::key_equal, decltype(test_equality)>::value, in test_member_types()
75 …sert(std::is_same<typename transparent_container_type::key_equal, transparent_key_equality>::value, in test_member_types()
77 static_assert(std::is_same<typename container_type::allocator_type, test_allocator_type>::value, in test_member_types()
81 static_assert(std::is_same<typename container_type::reference, value_type&>::value, in test_member_types()
83 static_assert(std::is_same<typename container_type::const_reference, const value_type&>::value, in test_member_types()
86 …<typename container_type::pointer, typename std::allocator_traits<allocator_type>::pointer>::value, in test_member_types()
88 …ntainer_type::const_pointer, typename std::allocator_traits<allocator_type>::const_pointer>::value, in test_member_types()
91 static_assert(utils::is_forward_iterator<typename container_type::iterator>::value, in test_member_types()
93 static_assert(!std::is_const<typename container_type::iterator::value_type>::value, in test_member_types()
95 static_assert(utils::is_forward_iterator<typename container_type::const_iterator>::value, in test_member_types()
97 static_assert(std::is_const<typename container_type::const_iterator::value_type>::value, in test_member_types()
99 static_assert(utils::is_forward_iterator<typename container_type::local_iterator>::value, in test_member_types()
101 static_assert(!std::is_const<typename container_type::local_iterator::value_type>::value, in test_member_types()
103 static_assert(utils::is_forward_iterator<typename container_type::const_local_iterator>::value, in test_member_types()
105 static_assert(std::is_const<typename container_type::const_local_iterator::value_type>::value, in test_member_types()
140 static_assert(std::is_same<decltype(s1), TSet<ComplexType>>::value); in test_deduction_guides()
144 … static_assert(std::is_same<decltype(s2), TSet<ComplexType, degenerate_hash<ComplexType>>>::value); in test_deduction_guides()
149 std::less<ComplexType>>>::value); in test_deduction_guides()
155 std::less<ComplexType>, custom_allocator_type>>::value); in test_deduction_guides()
160 std::equal_to<ComplexType>, custom_allocator_type>>::value); in test_deduction_guides()
165 std::equal_to<ComplexType>, custom_allocator_type>>::value); in test_deduction_guides()
169 static_assert(std::is_same<decltype(s7), TSet<ComplexType>>::value); in test_deduction_guides()
173 … static_assert(std::is_same<decltype(s8), TSet<ComplexType, degenerate_hash<ComplexType>>>::value); in test_deduction_guides()
178 std::less<ComplexType>>>::value); in test_deduction_guides()
183 std::less<ComplexType>, custom_allocator_type>>::value); in test_deduction_guides()
188 std::equal_to<ComplexType>, custom_allocator_type>>::value); in test_deduction_guides()
193 std::equal_to<ComplexType>, custom_allocator_type>>::value); in test_deduction_guides()
197 static_assert(std::is_same<decltype(s13), decltype(s1)>::value); in test_deduction_guides()
202 static_assert(std::is_same<decltype(s14), decltype(s5)>::value); in test_deduction_guides()
206 static_assert(std::is_same<decltype(s15), decltype(s1)>::value); in test_deduction_guides()
211 static_assert(std::is_same<decltype(s16), decltype(s5)>::value); in test_deduction_guides()