Lines Matching refs:LessA
379 class LessA : public std::less<T> { class
381 explicit LessA( bool no_assert = false ) { in LessA() function in LessA
393 using cpq_with_compare_type = oneapi::tbb::concurrent_priority_queue<int, LessA<int>>; in test_ctors_dtor_accessors()
394 …using cpq_with_compare_and_allocator_type = oneapi::tbb::concurrent_priority_queue<int, LessA<int>… in test_ctors_dtor_accessors()
396 LessA<int> l(true); in test_ctors_dtor_accessors()
574 TQueue qvc(v.begin(), v.end(), LessA<ComplexType>(true)); in TestDeductionGuides()
575 static_assert(std::is_same<decltype(qvc), TQueue<ComplexType, LessA<ComplexType>>>::value); in TestDeductionGuides()
578 TQueue qvca(v.begin(), v.end(), LessA<ComplexType>(true), std::allocator<ComplexType>()); in TestDeductionGuides()
579 static_assert(std::is_same<decltype(qvca), TQueue<ComplexType, LessA<ComplexType>, in TestDeductionGuides()
592 TQueue qlc(l, LessA<ComplexType>(true)); in TestDeductionGuides()
593 static_assert(std::is_same<decltype(qlc), TQueue<ComplexType, LessA<ComplexType>>>::value); in TestDeductionGuides()
596 TQueue qlca(l, LessA<ComplexType>(true), std::allocator<ComplexType>()); in TestDeductionGuides()
597 static_assert(std::is_same<decltype(qlca), TQueue<ComplexType, LessA<ComplexType>, in TestDeductionGuides()