Lines Matching refs:allocator
34 using Allocator = LocalCountingAllocator<std::allocator<Key>>;
48 using test_allocator_type = std::allocator<int>; in test_member_types()
96 std::allocator<int> allocator; in test_deduction_guides() local
101 TSet set3(vc.begin(), vc.end(), allocator); in test_deduction_guides()
102 …static_assert(std::is_same_v<decltype(set3), TSet<int, std::less<int>, decltype(allocator)>>, "Wro… in test_deduction_guides()
104 TSet set4(vc.begin(), vc.end(), compare, allocator); in test_deduction_guides()
105 …static_assert(std::is_same_v<decltype(set4), TSet<int, decltype(compare), decltype(allocator)>>, "… in test_deduction_guides()
115 TSet set7(init_list, allocator); in test_deduction_guides()
116 …static_assert(std::is_same_v<decltype(set7), TSet<int, std::less<int>, decltype(allocator)>>, "Wro… in test_deduction_guides()
118 TSet set8(init_list, compare, allocator); in test_deduction_guides()
119 …static_assert(std::is_same_v<decltype(set8), TSet<int, decltype(compare), decltype(allocator)>>, "… in test_deduction_guides()