Home
last modified time | relevance | path

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

/third_party/boost/boost/ptr_container/
Dptr_set.hpp39 class ptr_set : class
51 typedef ptr_set<Key,Compare,CloneAllocator,Allocator> this_type;
54 ptr_set() in ptr_set() function in boost::ptr_set
57 explicit ptr_set( const Compare& comp, in ptr_set() function in boost::ptr_set
63 ptr_set( InputIterator first, InputIterator last ) in ptr_set() function in boost::ptr_set
68 ptr_set( InputIterator first, InputIterator last, in ptr_set() function in boost::ptr_set
74 BOOST_PTR_CONTAINER_DEFINE_RELEASE_AND_CLONE( ptr_set,
78 BOOST_PTR_CONTAINER_DEFINE_COPY_CONSTRUCTORS( ptr_set, base_type )
136 inline ptr_set<K,C,CA,A>* new_clone( const ptr_set<K,C,CA,A>& r ) in new_clone()
151 inline void swap( ptr_set<K,C,CA,A>& l, ptr_set<K,C,CA,A>& r ) in swap()
Dserialize_ptr_set.hpp19 void serialize(Archive& ar, ptr_set<T, CloneAllocator, Allocator>& c, const unsigned int version) in serialize()
/third_party/boost/libs/ptr_container/test/
Dptr_set.cpp73 ptr_set_test< ptr_set<Base>, Base, Derived_class, true >(); in test_set()
74 ptr_set_test< ptr_set<Value>, Value, Value, true >(); in test_set()
79 test_copy< ptr_set<Base>, ptr_set<Derived_class>, in test_set()
84 test_transfer< ptr_set<Derived_class>, ptr_set<Base>, Derived_class>(); in test_set()
87 ptr_set<int> set; in test_set()
107 test_erase< ptr_set<Base> >(); in test_set()
Dconst_element_containers.cpp41 template class boost::ptr_set<const int>; member in boost
DJamfile.v227 [ sc-test ptr_set ]
Dserialization.cpp305 test_serialization_helper< boost::ptr_set<Base>, in test_serialization()
/third_party/boost/libs/ptr_container/doc/
Dptr_set.rst7 Class ``ptr_set``
10 A ``ptr_set<T>`` is a pointer container that uses an underlying ``std::set<void*>``
24 - ``ptr_set``
55 class ptr_set : public ptr_set_adapter
65 }; // class 'ptr_set'
Dheaders.rst25 ``<boost/ptr_container/ptr_set.hpp>`` classes `ptr_set <ptr_set.html>`_ and `p…
54 ``<boost/ptr_container/serialize_ptr_set.hpp>`` classes `ptr_set <ptr_set.html>`_ and `pt…
Dcomp_ptr_set.sh12 rst2html.py ptr_set.rst > ptr_set.html
Dptr_map.rst24 - `ptr_set <ptr_set.html>`_
Dptr_multiset.rst24 - `ptr_set <ptr_set.html>`_
Dptr_multimap.rst25 - `ptr_set <ptr_set.html>`_
Dptr_set_adapter.rst25 - `ptr_set <ptr_set.html>`_
37 .. _ptr_set: ptr_set.html target in Class ``ptr_set_adapter``
Dreference.rst40 - `ptr_set <ptr_set.html>`_
71 - `ptr_set <ptr_set.html>`_
288 - ``ptr_set``
314 - `ptr_set <ptr_set.html>`_
Dassociative_ptr_container.rst24 - `ptr_set <ptr_set.html>`_
99 given ``ptr_set<T>``, ``key_type*`` will be ``T*``.
Dptr_multiset_adapter.rst25 - `ptr_set <ptr_set.html>`_
Dindirect_fun.rst35 - `ptr_set <ptr_set.html>`_
Dptr_multimap_adapter.rst25 - `ptr_set <ptr_set.html>`_
Dptr_map_adapter.rst25 - `ptr_set <ptr_set.html>`_
Dtutorial.rst142 To keep an ordering on our animals, we could use a ``ptr_set``::
144 boost::ptr_set<animal> set;
239 null into ``ptr_set`` and ``ptr_multiset``.
Dptr_container.rst59 - `ptr_set <ptr_set.html>`_
245 ``boost::ptr_set<T>``, ``boost::ptr_map<Key,T>`` and ``boost::ptr_array<T,N>``, respectively.
Dreversible_ptr_container.rst31 - `ptr_set <ptr_set.html>`_
Dconventions.rst49 For example, in ``ptr_set<T>`` the ordering is by default done by
Dguidelines.rst31 ``ptr_set`` and ``ptr_map`` support unique keys.
/third_party/boost/libs/assign/test/
Dptr_list_inserter.cpp69 ptr_set<Foo> a_set; in check_ptr_list_inserter()