| /oneTBB/include/oneapi/tbb/detail/ |
| H A D | _allocator_traits.h | 34 using type = std::false_type; 63 void copy_assign_allocators_impl( Allocator&, const Allocator&, /*pocca = */ std::false_type ) {} 78 void move_assign_allocators_impl( Allocator&, Allocator&, /*pocma = */ std::false_type ) {} 94 void swap_allocators_impl( Allocator&, Allocator&, /*pocs = */ std::false_type ) {}
|
| H A D | _flow_graph_node_set_impl.h | 55 static graph& get_impl(const T& object, std::false_type) { in get_impl() argument 101 struct is_async_node : std::false_type {}; 162 static NodeType& get_impl(NodeType& node, std::false_type) { return node; } 184 static NodeType& internal_get(NodeType& node, std::false_type) { return node;} 188 static auto& get_impl(NodeType& node, std::false_type) 190 …static auto get_impl(NodeType& node, std::false_type) -> decltype(internal_get(node, has_output_po…
|
| H A D | _containers_helpers.h | 31 struct comp_is_transparent : std::false_type {}; 37 struct has_transparent_key_equal : std::false_type { using type = KeyEqual; };
|
| H A D | _segment_table.h | 406 /*is_always_equal = */ std::false_type ) { in internal_move_construct_with_allocator() argument 428 …id internal_move_assign( segment_table&& other, /*is_always_equal || POCMA = */ std::false_type ) { in internal_move_assign() argument 448 void internal_swap( segment_table& other, /*is_always_equal || POCS = */ std::false_type ) { in internal_swap() argument
|
| H A D | _template_helpers.h | 46 using type = std::false_type; 125 struct disjunction : std::false_type {};
|
| H A D | _concurrent_skip_list.h | 759 /*is_always_equal = */std::false_type) { in internal_move_construct_with_allocator() argument 937 key_compare select_comparator( /*allow_multimapping = */ std::false_type ) { in select_comparator() argument 1169 …ternal_move_assign( concurrent_skip_list&& other, /*POCMA || is_always_equal =*/std::false_type ) { in internal_move_assign() argument 1192 … void internal_swap( concurrent_skip_list& other, /*POCMA || is_always_equal =*/std::false_type ) { in internal_swap() argument
|
| H A D | _flow_graph_node_impl.h | 93 return try_put_task_impl(t, std::false_type()); in try_put_task() 283 graph_task* try_put_task_impl( const input_type& t, /*lightweight=*/std::false_type ) { in try_put_task_impl() argument
|
| H A D | _concurrent_unordered_base.h | 1378 /*is_always_equal = */std::false_type ) { in internal_move_construct_with_allocator() argument 1399 …_move_assign( concurrent_unordered_base&& other, /*is_always_equal || POCMA = */std::false_type ) { in internal_move_assign() argument 1412 … internal_swap( concurrent_unordered_base& other, /*is_always_equal || POCS = */std::false_type ) { in internal_swap() argument
|
| /oneTBB/test/common/ |
| H A D | custom_allocators.h | 43 template <typename T, typename POCMA = std::false_type, typename CounterType = std::size_t> 503 template <typename Allocator, typename POCMA = std::false_type, typename POCCA = std::false_type, 504 typename POCS = std::false_type> 586 using PoccaAllocator = PropagatingAllocator<std::allocator<T>, /*POCMA = */std::false_type, /*POCCA… 588 …= PropagatingAllocator<std::allocator<T>, /*POCMA = */std::false_type, /*POCCA = */std::false_type, 597 using propagate_on_container_move_assignment = std::false_type; 617 using is_always_equal = std::false_type; 619 using propagate_on_container_swap = std::false_type;
|
| H A D | container_move_support.h | 357 template <typename T, typename POCMA = std::false_type> 374 template <typename T, typename POCMA = std::false_type> 569 template <typename ContainerTraits, typename POCMA = std::false_type, typename T = FooWithAssign> 728 …e_type = typename DefaultStatefulFixtureHelper<ContainerTraits, /*POCMA = */std::false_type>::type; in test_move_assignment_POCMA_false_equal_allocator() 746 …e_type = typename DefaultStatefulFixtureHelper<ContainerTraits, /*POCMA = */std::false_type>::type; in test_move_assignment_POCMA_false_unequal_allocator()
|
| H A D | parallel_invoke_common.h | 77 void create_level(/*is_final_level*/std::false_type) const {
|
| H A D | concurrent_unordered_common.h | 105 template<typename Container, typename CheckElementState = std::false_type>
|
| H A D | node_handling_support.h | 374 std::vector<SrcTableType>& src_tables, std::false_type ) in check_concurrent_merge() argument
|
| H A D | concurrent_ordered_common.h | 127 template <typename Container, typename CheckElementState = std::false_type>
|
| H A D | concurrent_associative_common.h | 40 struct AllowMultimapping : std::false_type {}; 240 void check_value_state(const T&, std::false_type) {} 1028 void TestSquareBracketsAndAt( Table& c, const Value& value, /*multimap = */std::false_type ) {
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_unordered_set.cpp | 82 std::false_type>(new int, new int); in test_specific_types() 84 std::false_type>(new int, new int); in test_specific_types()
|
| H A D | test_concurrent_set.cpp | 75 test_emplace_insert<tbb::concurrent_set<test::unique_ptr<int>>, std::false_type> in test_specific_types() 77 test_emplace_insert<tbb::concurrent_multiset<test::unique_ptr<int>>, std::false_type> in test_specific_types()
|
| H A D | test_concurrent_map.cpp | 93 test_emplace_insert<tbb::concurrent_map<int*, test::unique_ptr<int>>,std::false_type> in test_specific_types() 95 test_emplace_insert<tbb::concurrent_multimap<int*, test::unique_ptr<int>>,std::false_type> in test_specific_types()
|
| H A D | test_concurrent_unordered_map.cpp | 100 test_emplace_insert<tbb::concurrent_unordered_map<int*, test::unique_ptr<int>>, std::false_type> in test_specific_types() 102 …st_emplace_insert<tbb::concurrent_unordered_multimap<int*, test::unique_ptr<int>>, std::false_type> in test_specific_types()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_vector.cpp | 1062 …move_support_tests::DefaultStatefulFixtureHelper<c_vector_type, /*POCMA = */std::false_type>::type; in test_ex_move_assignment_memory_failure() 1063 …pport_tests::ArenaAllocatorFixture<move_support_tests::FooWithAssign, /*POCMA = */std::false_type>; in test_ex_move_assignment_memory_failure() 1093 …ture_type = move_support_tests::DefaultStatefulFixtureHelper<c_vector_type, std::false_type>::type; in test_ex_move_assignment_element_ctor_exception() 1094 …pe = move_support_tests::ArenaAllocatorFixture<move_support_tests::FooWithAssign, std::false_type>; in test_ex_move_assignment_element_ctor_exception()
|
| H A D | conformance_concurrent_priority_queue.cpp | 254 …pe = move_support_tests::TwoMemoryArenasFixture<MoveOperationTracker, /*POCMA = */std::false_type>; in test_per_element_move_assign_operator()
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | concurrent_hash_map.h | 1267 node* allocate_node_helper( const K&, const T*, AllocateNodeType, std::false_type ) { in __TBB_requires() 1531 /*is_always_equal=*/std::false_type ) in __TBB_requires() 1551 void internal_move_assign(concurrent_hash_map&& other, /*is_always_equal=*/ std::false_type) { in __TBB_requires() 1565 void internal_swap(concurrent_hash_map& other, /*is_always_equal || POCS = */ std::false_type) { in __TBB_requires()
|
| H A D | concurrent_priority_queue.h | 391 void push_back_helper_impl( const T&, /*is_copy_constructible = */std::false_type ) { in push_back_helper_impl() argument
|
| H A D | task_group.h | 108 d1::task* task_ptr_or_nullptr_impl(std::false_type, F&& f){ in task_ptr_or_nullptr_impl() argument
|
| H A D | parallel_for_each.h | 179 void internal_add_copy_impl(std::false_type, const Item&) { in internal_add_copy_impl() argument
|