Lines Matching refs:ch_map
51 using ch_map = tbb::concurrent_hash_map<int,int>; in TestRangeBasedFor() typedef
52 ch_map a_ch_map; in TestRangeBasedFor()
56 a_ch_map.insert(ch_map::value_type(i,i)); in TestRangeBasedFor()
260 using ch_map = tbb::concurrent_hash_map<key_type, second_type>; in TypeTester() typedef
263 ch_map c1; in TypeTester()
270 ch_map c2( il ); in TypeTester()
275 ch_map c3( il, compare); in TypeTester()
280 ch_map c4( il, compare, typename ch_map::allocator_type()); in TypeTester()
285 ch_map c5(c1); in TypeTester()
298 ch_map c8( lst.size() ); in TypeTester()
305 ch_map c10_1( c1.begin(), c1.end() ), c10_2(c1.cbegin(), c1.cend()); in TypeTester()
315 typename ch_map::allocator_type>; in TypeTester()
321 ch_map_debug_hash c13(c1.begin(), c1.end(), compare, typename ch_map::allocator_type()); in TypeTester()