Home
last modified time | relevance | path

Searched defs:value_holder (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/type_erasure/test/
Dtest_assign.cpp137 struct value_holder struct
142 value_holder(const U& u) : value(u) {} in value_holder() function
151 struct value_holder<any<C, P> > argument
157 value_holder(U&& u) : value(std::forward<U>(u)) {} in value_holder() function
160 value_holder(U& u) : value(u) {} in value_holder() function
162 value_holder(const U& u) : value(u) {} in value_holder() function
172 struct value_holder<T&> struct
174 typedef typename value_holder<T>::type& type; argument
175 typedef typename value_holder<T>::unwrapped_type unwrapped_type; argument
178 value_holder(U&& u) : impl(std::forward<U>(u)) {} in value_holder() function
[all …]
/third_party/boost/boost/poly_collection/detail/
Dvalue_holder.hpp65 class value_holder:public value_holder_base<T> class
95 value_holder(Allocator& al,const T& x) in value_holder() function in boost::poly_collection::detail::value_holder
102 value_holder(Allocator& al,T&& x) in value_holder() function in boost::poly_collection::detail::value_holder
109 value_holder(Allocator& al,value_holder_emplacing_ctor_t,Args&&... args) in value_holder() function in boost::poly_collection::detail::value_holder
116 value_holder(Allocator& al,const value_holder& x) in value_holder() function in boost::poly_collection::detail::value_holder
123 value_holder(Allocator& al,value_holder&& x) in value_holder() function in boost::poly_collection::detail::value_holder
133 value_holder(const T& x) in value_holder() function in boost::poly_collection::detail::value_holder
136 value_holder(T&& x) in value_holder() function in boost::poly_collection::detail::value_holder
140 value_holder(value_holder_emplacing_ctor_t,Args&&... args) in value_holder() function in boost::poly_collection::detail::value_holder
142 value_holder(const value_holder& x) in value_holder() function in boost::poly_collection::detail::value_holder
[all …]
/third_party/boost/boost/python/object/
Dvalue_holder.hpp39 struct value_holder : instance_holder struct
41 typedef Value held_type;
42 typedef Value value_type;
52 inline void* holds_wrapped(type_info dst_t, wrapper<T>*,T* p) in holds_wrapped()
57 inline void* holds_wrapped(type_info, ...) in holds_wrapped()
62 Value m_held;
/third_party/boost/libs/interprocess/test/
Dexpand_bwd_test_template.hpp24 struct value_holder struct
26 value_holder(T val) : m_value(val){} in value_holder() argument
27 value_holder(): m_value(0){} in value_holder() function
28 ~value_holder(){ m_value = 0; } in ~value_holder()
29 bool operator == (const value_holder &other) const in operator ==()
31 bool operator != (const value_holder &other) const in operator !=()
34 T m_value;