Lines Matching refs:Bar
281 class Bar { class
286 Bar() : state(LIVE), my_id(-1) in Bar() function in Bar
289 Bar( std::size_t _i ) : state(LIVE), my_id(_i) { construction_num++; } in Bar() function in Bar
291 Bar( const Bar& a_bar ) : state(LIVE) { in Bar() function in Bar
297 ~Bar() { in ~Bar()
304 void operator=( const Bar& a_bar ) { in operator =()
309 friend bool operator==( const Bar& bar1, const Bar& bar2 ) ;
312 std::size_t Bar::construction_num = 0;
313 std::size_t Bar::destruction_num = 0;
315 bool operator==( const Bar& bar1, const Bar& bar2 ) { in operator ==()
322 Bar* bar_ptr;
323 BarIterator(Bar* bp_) : bar_ptr(bp_) {} in BarIterator()
325 Bar& operator*() const { in operator *()
332 Bar* operator++(int) { in operator ++()
333 Bar* result = &operator*(); in operator ++()
586 …TestConstructors<ConcQWithSizeWrapper<Bar>, Bar, BarIterator, ConcQWithSizeWrapper<BarEx>, BarEx>(… in TestQueueConstructors()
587 …TestConstructors<oneapi::tbb::concurrent_bounded_queue<Bar>, Bar, BarIterator, oneapi::tbb::concur… in TestQueueConstructors()
1357 TestMoveConstructors<ConcQWithSizeWrapper<Bar, allocator<Bar>>, Bar>(); in TestMoveConstruction()
1358 TestMoveConstructors<oneapi::tbb::concurrent_bounded_queue<Bar, allocator<Bar>>, Bar>(); in TestMoveConstruction()