Lines Matching refs:value

42     static_assert(std::is_same<typename default_container_type::key_compare, std::less<int>>::value,  in test_member_types()
44 …::is_same<typename default_container_type::allocator_type, oneapi::tbb::tbb_allocator<int>>::value, in test_member_types()
52 static_assert(std::is_same<typename container_type::key_type, int>::value, in test_member_types()
54 static_assert(std::is_same<typename container_type::value_type, int>::value, in test_member_types()
57 static_assert(std::is_unsigned<typename container_type::size_type>::value, in test_member_types()
59 static_assert(std::is_signed<typename container_type::difference_type>::value, in test_member_types()
62 …static_assert(std::is_same<typename container_type::key_compare, decltype(test_comparator)>::value, in test_member_types()
64 static_assert(std::is_same<typename container_type::allocator_type, test_allocator_type>::value, in test_member_types()
68 static_assert(std::is_same<typename container_type::reference, value_type&>::value, in test_member_types()
70 static_assert(std::is_same<typename container_type::const_reference, const value_type&>::value, in test_member_types()
73 …<typename container_type::pointer, typename std::allocator_traits<allocator_type>::pointer>::value, in test_member_types()
75 …ntainer_type::const_pointer, typename std::allocator_traits<allocator_type>::const_pointer>::value, in test_member_types()
78 static_assert(utils::is_forward_iterator<typename container_type::iterator>::value, in test_member_types()
80 static_assert(!std::is_const<typename container_type::iterator::value_type>::value, in test_member_types()
82 static_assert(utils::is_forward_iterator<typename container_type::const_iterator>::value, in test_member_types()
84 static_assert(std::is_const<typename container_type::const_iterator::value_type>::value, in test_member_types()