Lines Matching refs:allocator
139 template <typename Allocator = std::allocator<MoveOperationTracker>>
390 std::allocator<int> a; in test_ctors_dtor_accessors()
394 …_and_allocator_type = oneapi::tbb::concurrent_priority_queue<int, LessA<int>, std::allocator<int>>; in test_ctors_dtor_accessors()
569 TQueue qva(v.begin(), v.end(), std::allocator<ComplexType>()); in TestDeductionGuides()
571 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
578 TQueue qvca(v.begin(), v.end(), LessA<ComplexType>(true), std::allocator<ComplexType>()); in TestDeductionGuides()
580 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
587 TQueue qla(l, std::allocator<ComplexType>()); in TestDeductionGuides()
589 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
596 TQueue qlca(l, LessA<ComplexType>(true), std::allocator<ComplexType>()); in TestDeductionGuides()
598 std::allocator<ComplexType>>>::value); in TestDeductionGuides()
605 TQueue qca(qva, std::allocator<ComplexType>()); in TestDeductionGuides()
613 TQueue qma(std::move(qva), std::allocator<ComplexType>()); in TestDeductionGuides()