Lines Matching refs:ConcQWithSizeWrapper

259 class ConcQWithSizeWrapper : public oneapi::tbb::concurrent_queue<T, A> {  class
261 ConcQWithSizeWrapper() {} in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
262ConcQWithSizeWrapper( const ConcQWithSizeWrapper& q ) : oneapi::tbb::concurrent_queue<T, A>(q) {} in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
263ConcQWithSizeWrapper( const ConcQWithSizeWrapper& q, const A& a ) : oneapi::tbb::concurrent_queue<… in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
264 ConcQWithSizeWrapper( const A& a ) : oneapi::tbb::concurrent_queue<T, A>( a ) {} in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
266ConcQWithSizeWrapper( ConcQWithSizeWrapper&& q ) : oneapi::tbb::concurrent_queue<T>(std::move(q)) … in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
267 ConcQWithSizeWrapper( ConcQWithSizeWrapper&& q, const A& a ) in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
271 ConcQWithSizeWrapper( InputIterator begin, InputIterator end, const A& a = A() ) in ConcQWithSizeWrapper() function in ConcQWithSizeWrapper
586 …TestConstructors<ConcQWithSizeWrapper<Bar>, Bar, BarIterator, ConcQWithSizeWrapper<BarEx>, BarEx>(… in TestQueueConstructors()
926 TestExceptionBody<ConcQWithSizeWrapper, allocator_t, allocator_char_t, FooEx>(); in TestExceptions()
1357 TestMoveConstructors<ConcQWithSizeWrapper<Bar, allocator<Bar>>, Bar>(); in TestMoveConstruction()
1427 TestEmplaceInQueue<ConcQWithSizeWrapper<NonTrivialConstructorType>, emplace_op>(); in TestEmplace()