Lines Matching refs:value
60 static_assert(std::is_same<typename default_container_type::key_compare, std::less<int>>::value, in test_member_types()
62 …ault_container_type::allocator_type, oneapi::tbb::tbb_allocator<std::pair<const int, int>>>::value, in test_member_types()
70 static_assert(std::is_same<typename container_type::key_type, int>::value, in test_member_types()
72 static_assert(std::is_same<typename container_type::mapped_type, int>::value, in test_member_types()
74 … static_assert(std::is_same<typename container_type::value_type, std::pair<const int, int>>::value, in test_member_types()
77 static_assert(std::is_unsigned<typename container_type::size_type>::value, in test_member_types()
79 static_assert(std::is_signed<typename container_type::difference_type>::value, in test_member_types()
82 …static_assert(std::is_same<typename container_type::key_compare, decltype(test_comparator)>::value, in test_member_types()
84 static_assert(std::is_same<typename container_type::allocator_type, test_allocator_type>::value, in test_member_types()
88 static_assert(std::is_same<typename container_type::reference, value_type&>::value, in test_member_types()
90 static_assert(std::is_same<typename container_type::const_reference, const value_type&>::value, in test_member_types()
93 …<typename container_type::pointer, typename std::allocator_traits<allocator_type>::pointer>::value, in test_member_types()
95 …ntainer_type::const_pointer, typename std::allocator_traits<allocator_type>::const_pointer>::value, in test_member_types()
98 static_assert(utils::is_forward_iterator<typename container_type::iterator>::value, in test_member_types()
100 static_assert(!std::is_const<typename container_type::iterator::value_type>::value, in test_member_types()
102 static_assert(utils::is_forward_iterator<typename container_type::const_iterator>::value, in test_member_types()
104 static_assert(std::is_const<typename container_type::const_iterator::value_type>::value, in test_member_types()