Lines Matching refs:MyData2
67 friend class MyData2;
122 class MyData2 : public MyData { class
124 MyData2( ) {} in MyData2() function in MyData2
126 MyData2( const MyData2& other ) : MyData() { in MyData2() function in MyData2
132 MyData2( const MyData& other ) { in MyData2() function in MyData2
144 void operator=( const MyData2& other ) { in operator =()
150 bool operator==( const MyData2& other ) const { in operator ==()
181 using other_test_table_type = oneapi::tbb::concurrent_hash_map<MyKey, MyData2, MyHashCompare>;
399 …t_allocator_type2 = StaticSharedCountingAllocator<std::allocator<std::pair<const MyKey, MyData2>>>; in TestIteratorsAndRanges()
400 …using YourTable1 = oneapi::tbb::concurrent_hash_map<MyKey,MyData2,YourHashCompare, test_allocator_… in TestIteratorsAndRanges()
401 using YourTable2 = oneapi::tbb::concurrent_hash_map<MyKey,MyData2,YourHashCompare>; in TestIteratorsAndRanges()
406 MyKey key( MyKey::make(-5) ); MyData2 data; in TestIteratorsAndRanges()
472 …r_type = only_node_counting_allocator<oneapi::tbb::tbb_allocator<std::pair<const MyKey, MyData2>>>; in TestExceptions()
473 …using throwing_table = oneapi::tbb::concurrent_hash_map<MyKey, MyData2, MyHashCompare, allocator_t… in TestExceptions()
803 if ( table.insert( std::make_pair(MyKey::make(key), MyData2()) ) ) in apply()