Lines Matching refs:allocator
179 using test_allocator_type = StaticSharedCountingAllocator<std::allocator<std::pair<const MyKey, MyD…
399 …using test_allocator_type2 = StaticSharedCountingAllocator<std::allocator<std::pair<const MyKey, M… in TestIteratorsAndRanges()
1063 map_type::allocator_type allocator; in TestHashCompareConstructors() local
1066 map_type map2(compare, allocator); in TestHashCompareConstructors()
1069 map_type map4(1, compare, allocator); in TestHashCompareConstructors()
1073 map_type map6(reference_vector.begin(), reference_vector.end(), compare, allocator); in TestHashCompareConstructors()
1076 map_type map8({}, compare, allocator); in TestHashCompareConstructors()
1094 using Allocator = std::allocator<ComplexTypeConst>; in TestDeductionGuides()
1099 Allocator allocator; in TestDeductionGuides() local
1110 TMap m3(v.begin(), v.end(), compare, allocator); in TestDeductionGuides()
1114 TMap m4(v.begin(), v.end(), allocator); in TestDeductionGuides()
1126 TMap m7(l, compare, allocator); in TestDeductionGuides()
1130 TMap m8(l, allocator); in TestDeductionGuides()
1138 TMap m10(m4, allocator); in TestDeductionGuides()
1146 TMap m12(std::move(m4), allocator); in TestDeductionGuides()