Lines Matching refs:MyData
65 class MyData { class
73 void operator=( const MyData& ); // Deny access
75 MyData(int i = 0) { in MyData() function in MyData
84 MyData( const MyData& other ) { in MyData() function in MyData
94 ~MyData() { in ~MyData()
99 static MyData make( int i ) { in make()
100 MyData result; in make()
115 bool operator==( const MyData& other ) const { in operator ==()
122 class MyData2 : public MyData {
126 MyData2( const MyData2& other ) : MyData() { in MyData2()
132 MyData2( const MyData& other ) { in MyData2()
138 void operator=( const MyData& other ) { in operator =()
179 …est_allocator_type = StaticSharedCountingAllocator<std::allocator<std::pair<const MyKey, MyData>>>;
180 using test_table_type = oneapi::tbb::concurrent_hash_map<MyKey, MyData, MyHashCompare, test_allocat…
287 w.insert( std::make_pair(MyKey::make(-5), MyData()) ); in TestRehash()
667 table.insert( a, std::make_pair(MyKey::make(i), MyData(i*i)) ); in apply()
671 table.insert( ca, std::make_pair(MyKey::make(i), MyData(i*i)) ); in apply()
795 using YourTable = oneapi::tbb::concurrent_hash_map<MyKey, MyData, YourHashCompare>;