Home
last modified time | relevance | path

Searched refs:multiset (Results 1 – 25 of 124) sorted by relevance

12345

/third_party/boost/boost/container/
Dset.hpp669 BOOST_CONTAINER_FORCEINLINE void merge(multiset<Key, C2, Allocator, Options>& source) in merge()
678 …BOOST_CONTAINER_FORCEINLINE void merge(BOOST_RV_REF_BEG multiset<Key, C2, Allocator, Options> BOOS… in merge()
679 { return this->merge(static_cast<multiset<Key, C2, Allocator, Options>&>(source)); } in merge()
1056 class multiset class
1064 BOOST_COPYABLE_AND_MOVABLE(multiset)
1102 BOOST_CONTAINER_FORCEINLINE multiset() in multiset() function in boost::container::multiset
1109 BOOST_CONTAINER_FORCEINLINE explicit multiset(const allocator_type& a) in multiset() function in boost::container::multiset
1114 BOOST_CONTAINER_FORCEINLINE explicit multiset(const Compare& comp) in multiset() function in boost::container::multiset
1119 BOOST_CONTAINER_FORCEINLINE multiset(const Compare& comp, const allocator_type& a) in multiset() function in boost::container::multiset
1125 BOOST_CONTAINER_FORCEINLINE multiset(InputIterator first, InputIterator last) in multiset() function in boost::container::multiset
[all …]
/third_party/boost/libs/unordered/test/unordered/
Dcompile_set.cpp26 INSTANTIATE(multiset)<int const, boost::hash<int>, std::equal_to<int>,
33 INSTANTIATE(multiset)<test::minimal::assignable,
73 multiset; in UNORDERED_AUTO_TEST() local
77 container_test(multiset, assignable); in UNORDERED_AUTO_TEST()
112 multiset; in UNORDERED_AUTO_TEST() local
116 equality_test(multiset); in UNORDERED_AUTO_TEST()
142 boost::unordered_multiset<int> multiset; in UNORDERED_AUTO_TEST() local
148 unordered_equivalent_test(multiset, value); in UNORDERED_AUTO_TEST()
149 unordered_set_test(multiset, value); in UNORDERED_AUTO_TEST()
150 unordered_copyable_test(multiset, value, value, hash, equal_to); in UNORDERED_AUTO_TEST()
[all …]
Dequivalent_keys_tests.cpp42 typedef boost::unordered_multiset<int> multiset; in UNORDERED_AUTO_TEST() typedef
50 test_equal_insertion<multiset>(values[0], values[0] + 1); in UNORDERED_AUTO_TEST()
51 test_equal_insertion<multiset>(values[1], values[1] + 2); in UNORDERED_AUTO_TEST()
52 test_equal_insertion<multiset>(values[2], values[2] + 2); in UNORDERED_AUTO_TEST()
53 test_equal_insertion<multiset>(values[3], values[3] + 2); in UNORDERED_AUTO_TEST()
54 test_equal_insertion<multiset>(values[4], values[4] + 3); in UNORDERED_AUTO_TEST()
Dsimple_tests.cpp105 boost::unordered_multiset<int> multiset; in UNORDERED_AUTO_TEST() local
106 simple_test(multiset); in UNORDERED_AUTO_TEST()
111 multiset.insert(index); in UNORDERED_AUTO_TEST()
113 simple_test(multiset); in UNORDERED_AUTO_TEST()
Dunnecessary_copy_tests.cpp234 boost::unordered_multiset<count_copies>* multiset; variable
238 UNORDERED_TEST(unnecessary_copy_insert_test, ((set)(multiset)(map)(multimap)))
239 UNORDERED_TEST(unnecessary_copy_insert_rvalue_set_test, ((set)(multiset)))
265 unnecessary_copy_emplace_test, ((set)(multiset)(map)(multimap)))
267 unnecessary_copy_emplace_rvalue_test, ((set)(multiset)(map)(multimap)))
283 unnecessary_copy_emplace_std_move_test, ((set)(multiset)(map)(multimap)))
305 unnecessary_copy_emplace_boost_move_test, ((set)(multiset)(map)(multimap)))
320 unnecessary_copy_emplace_boost_move_set_test, ((set)(multiset)))
/third_party/boost/libs/container/test/
Dset_test.cpp50 multiset<recursive_multiset> multiset_;
51 multiset<recursive_multiset>::iterator it_;
52 multiset<recursive_multiset>::const_iterator cit_;
53 multiset<recursive_multiset>::reverse_iterator rit_;
54 multiset<recursive_multiset>::const_reverse_iterator crit_;
123 typedef multiset<test::movable_int> multiset_type; in node_type_test()
204 typedef boost::container::multiset<T, std::less<T>, Allocator> type;
218 std::multiset<int> int_mset; in constructor_template_auto_deduction_test()
231 auto fmset = multiset(int_mset.begin(), int_mset.end()); in constructor_template_auto_deduction_test()
240 auto fmset = multiset(int_mset.begin(), int_mset.end(), comp_int_t()); in constructor_template_auto_deduction_test()
[all …]
Dexplicit_inst_set_test.cpp20 template class ::boost::container::multiset<empty>;
23 volatile ::boost::container::multiset<empty> dummy2;
43 template class multiset variable
/third_party/boost/libs/intrusive/example/
Ddoc_positional_insertion.cpp42 multiset<MyClass> mset; in main()
46 multiset<MyClass>::const_iterator next(mset.cbegin()), it(next++); in main()
51 multiset<MyClass, compare< std::greater<MyClass> > > mset; in main()
55 multiset<MyClass, compare< std::greater<MyClass> > >:: in main()
61 multiset<MyClass> mset; in main()
63 multiset<MyClass>::const_iterator pos = in main()
68 multiset<MyClass>::const_iterator next(mset.cbegin()), it(next++); in main()
/third_party/boost/libs/container/bench/
Dbench_set_multi.cpp24 launch_tests< multiset<int> , std::multiset<int> > in main()
26 launch_tests< multiset<string> , std::multiset<string> > in main()
Dbench_flat_multiset.cpp23 launch_tests< flat_multiset<int> , multiset<int> > in main()
25 launch_tests< flat_multiset<string> , multiset<string> > in main()
/third_party/boost/libs/phoenix/test/container/
Dcontainer_tests8a.cpp24 std::multiset<int> const build_multiset() in build_multiset()
27 typedef std::multiset<int> int_multiset; in build_multiset()
55 BOOST_STATIC_ASSERT((!phx::stl::has_mapped_type<std::multiset<int> >::value)); in main()
56 BOOST_STATIC_ASSERT((phx::stl::has_key_type<std::multiset<int> >::value)); in main()
58 std::multiset<int> const data = build_multiset(); in main()
Dcontainer_tests8b.cpp24 std::multiset<int> const build_multiset() in build_multiset()
27 typedef std::multiset<int> int_multiset; in build_multiset()
55 BOOST_STATIC_ASSERT((!phx::stl::has_mapped_type<std::multiset<int> >::value)); in main()
56 BOOST_STATIC_ASSERT((phx::stl::has_key_type<std::multiset<int> >::value)); in main()
58 std::multiset<int> const data = build_multiset(); in main()
/third_party/boost/boost/assign/std/
Dset.hpp39 inline list_inserter< assign_detail::call_insert< std::multiset<K,C,A> >, K >
40 operator+=( std::multiset<K,C,A>& c, K2 k ) in operator +=()
55 inline list_inserter< assign_detail::call_insert< std::multiset<K, C, A> >, K >
56 operator+=(std::multiset<K, C, A>& c, K2&& k)
/third_party/boost/libs/interprocess/test/
Dtree_test.cpp61 typedef std::multiset<int> MyStdMultiSet;
67 typedef multiset<int, std::less<int>, shmem_allocator_t> MyShmMultiSet;
74 typedef multiset<test::movable_int,
87 typedef multiset<test::movable_and_copyable_int,
94 typedef multiset<test::copyable_int,
187 if(!boost::interprocess::test::test_emplace<multiset<test::EmplaceInt>, SetOptions>()) in main()
/third_party/boost/boost/typeof/std/
Dset.hpp18 BOOST_TYPEOF_REGISTER_TEMPLATE(std::multiset, 1)
19 BOOST_TYPEOF_REGISTER_TEMPLATE(std::multiset, 2)
20 BOOST_TYPEOF_REGISTER_TEMPLATE(std::multiset, 3)
/third_party/boost/boost/intrusive/
Dset.hpp423 void merge(multiset<T, Options2...> &source);
914 void merge(multiset<T, Options2...> &source);
995 class multiset class
1012 BOOST_MOVABLE_BUT_NOT_COPYABLE(multiset)
1023 BOOST_INTRUSIVE_FORCEINLINE multiset() in multiset() function in boost::intrusive::multiset
1027 …BOOST_INTRUSIVE_FORCEINLINE explicit multiset( const key_compare &cmp, const value_traits &v_trait… in multiset() function in boost::intrusive::multiset
1032 BOOST_INTRUSIVE_FORCEINLINE multiset( Iterator b, Iterator e in multiset() function in boost::intrusive::multiset
1038 BOOST_INTRUSIVE_FORCEINLINE multiset(BOOST_RV_REF(multiset) x) in multiset() function in boost::intrusive::multiset
1042 BOOST_INTRUSIVE_FORCEINLINE multiset& operator=(BOOST_RV_REF(multiset) x) in operator =()
1043 { return static_cast<multiset &>(this->Base::operator=(BOOST_MOVE_BASE(Base, x))); } in operator =()
[all …]
/third_party/boost/boost/serialization/
Dset.hpp100 const std::multiset<Key, Compare, Allocator> &t, in save()
105 std::multiset<Key, Compare, Allocator> in save()
112 std::multiset<Key, Compare, Allocator> &t, in load()
123 std::multiset<Key, Compare, Allocator> & t, in serialize()
135 BOOST_SERIALIZATION_COLLECTION_TRAITS(std::multiset)
/third_party/boost/boost/container/pmr/
Dset.hpp35 using multiset = boost::container::multiset<Key, Compare, polymorphic_allocator<Key>, Options>; typedef
56 typedef boost::container::multiset<Key, Compare, polymorphic_allocator<Key>, Options> type;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCChecker.h45 using PredSet = std::multiset<PredSense>;
46 using PredSetIterator = std::multiset<PredSense>::iterator;
64 using LatePredsIterator = std::multiset<unsigned>::iterator;
65 std::multiset<unsigned> LatePreds;
/third_party/boost/libs/assign/test/
Dstd.cpp28 using std::multiset;
152 test_int_sequence< multiset<int> >(); in check_std()
161 test_string_sequence< multiset<string> >(); in check_std()
170 test_tuple_sequence< multiset<two_tuple> >(); in check_std()
197 multiset<int> msi; in check_std()
/third_party/boost/libs/container_hash/test/
Dhash_set_test.cpp26 using std::multiset;
27 #define CONTAINER_TYPE multiset
/third_party/boost/libs/multi_index/perf/
Dtest_perf.cpp442 typedef multiset< in main()
466 typedef multiset< in main()
490 multiset< in main()
498 typedef multiset< in main()
524 multiset< in main()
532 typedef multiset< in main()
/third_party/boost/libs/ptr_container/doc/
Dptr_multiset.rst10 A ``ptr_multiset<T>`` is a pointer container that uses an underlying ``std::multiset<void*>``
57 … std::multiset<void*,void_ptr_indirect_fun<Compare,Key>,Allocator>,
/third_party/boost/libs/detail/test/container_fwd/
Dcontainer_fwd_test.cpp54 static void test(std::multiset<Key, Compare, Allocator> const&) in test()
92 std::multiset<std::vector<int> > x8; in main()
/third_party/boost/libs/serialization/test/
Dtest_set.cpp80 std::multiset<A> amultiset; in test_multiset()
91 std::multiset<A> amultiset1; in test_multiset()

12345