Home
last modified time | relevance | path

Searched refs:false_type (Results 1 – 25 of 27) sorted by relevance

12

/oneTBB/include/oneapi/tbb/detail/
H A D_allocator_traits.h34 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.h55 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.h31 struct comp_is_transparent : std::false_type {};
37 struct has_transparent_key_equal : std::false_type { using type = KeyEqual; };
H A D_segment_table.h406 /*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.h46 using type = std::false_type;
125 struct disjunction : std::false_type {};
H A D_concurrent_skip_list.h759 /*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.h93 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.h1378 /*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 Dcustom_allocators.h43 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 Dcontainer_move_support.h357 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 Dparallel_invoke_common.h77 void create_level(/*is_final_level*/std::false_type) const {
H A Dconcurrent_unordered_common.h105 template<typename Container, typename CheckElementState = std::false_type>
H A Dnode_handling_support.h374 std::vector<SrcTableType>& src_tables, std::false_type ) in check_concurrent_merge() argument
H A Dconcurrent_ordered_common.h127 template <typename Container, typename CheckElementState = std::false_type>
H A Dconcurrent_associative_common.h40 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 Dtest_concurrent_unordered_set.cpp82 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 Dtest_concurrent_set.cpp75 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 Dtest_concurrent_map.cpp93 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 Dtest_concurrent_unordered_map.cpp100 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 Dconformance_concurrent_vector.cpp1062 …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 Dconformance_concurrent_priority_queue.cpp254 …pe = move_support_tests::TwoMemoryArenasFixture<MoveOperationTracker, /*POCMA = */std::false_type>; in test_per_element_move_assign_operator()
/oneTBB/include/oneapi/tbb/
H A Dconcurrent_hash_map.h1267 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 Dconcurrent_priority_queue.h391 void push_back_helper_impl( const T&, /*is_copy_constructible = */std::false_type ) { in push_back_helper_impl() argument
H A Dtask_group.h108 d1::task* task_ptr_or_nullptr_impl(std::false_type, F&& f){ in task_ptr_or_nullptr_impl() argument
H A Dparallel_for_each.h179 void internal_add_copy_impl(std::false_type, const Item&) { in internal_add_copy_impl() argument

12