Lines Matching refs:std

29 struct AllowMultimapping<tbb::concurrent_unordered_multimap<Args...>> : std::true_type {};
32 using MyAllocator = LocalCountingAllocator<std::allocator<std::pair<const Key, Mapped>>>;
36 using map_type = tbb::concurrent_unordered_map<int, int, std::hash<int>, std::equal_to<int>, MyAllo…
37 using multimap_type = tbb::concurrent_unordered_multimap<int, int, std::hash<int>, std::equal_to<in…
38 using degenerate_map_type = tbb::concurrent_unordered_map<int, int, degenerate_hash<int>, std::equa…
39 …_type = tbb::concurrent_unordered_multimap<int, int, degenerate_hash<int>, std::equal_to<int>, MyA…
41 using checked_map_type = tbb::concurrent_unordered_map<int, CheckType<int>, std::hash<int>, std::eq…
42 …map_type = tbb::concurrent_unordered_multimap<int, CheckType<int>, std::hash<int>, std::equal_to<i…
43 using checked_state_map_type = tbb::concurrent_unordered_map<intptr_t, FooWithAssign, std::hash<int…
44std::equal_to<intptr_t>, MyAllocator<intptr_t, FooWithAssign>>;
45 using checked_state_multimap_type = tbb::concurrent_unordered_multimap<intptr_t, FooWithAssign, std
46std::equal_to<intptr_t>, MyAllocator<intptr_t, FooWithAssign>>;
50 …using container_type = tbb::concurrent_unordered_map<T, T, std::hash<T>, std::equal_to<T>, Allocat…
53 using container_value_type = std::pair<const T, T>;
60 …using container_type = tbb::concurrent_unordered_multimap<T, T, std::hash<T>, std::equal_to<T>, Al…
63 using container_value_type = std::pair<const T, T>;
84 using table_type = GeneralTableType<Key, Mapped, std::hash<Key>, utils::IsEqual>;
87 void check( const std::list<ValueType>& lst ) { in check()
88 using key_type = typename std::remove_const<typename ValueType::first_type>::type; in check()
100 test_emplace_insert<tbb::concurrent_unordered_map<int*, test::unique_ptr<int>>, std::false_type> in test_specific_types()
102 …test_emplace_insert<tbb::concurrent_unordered_multimap<int*, test::unique_ptr<int>>, std::false_ty… in test_specific_types()
130 test_basic<checked_state_map_type, /*CheckState = */std::true_type>();
135 test_basic<checked_state_multimap_type, /*CheckState = */std::true_type>();
202 …ays_equal_alloc_map_type = tbb::concurrent_unordered_map<int, int, std::hash<int>, std::equal_to<i…
203 … NotAlwaysEqualAllocator<std::pair<const int, int>>>;
209 …ual_alloc_mmap_type = tbb::concurrent_unordered_multimap<int, int, std::hash<int>, std::equal_to<i…
210 … NotAlwaysEqualAllocator<std::pair<const int, int>>>;
229 using allocator_type = StaticSharedCountingAllocator<std::allocator<std::pair<const int, int>>>;
230 …using exception_mmap_type = tbb::concurrent_unordered_map<int, int, std::hash<int>, std::equal_to<…
234 map.insert(std::pair<const int, int>(i, 42));
241 }(), const std::bad_alloc); in __anonf1fab3910102()