Home
last modified time | relevance | path

Searched refs:get_impl (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/
H A Dvariadic_templates_tools.hpp100 class get_impl;
103 class get_impl<I, tuple<Head, Values...> > class
106 typedef get_impl<I-1, tuple<Values...> > Next;
116 class get_impl<0, tuple<Head, Values...> > class
126 typename get_impl<I, tuple<Values...> >::type get(tuple<Values...>& t) in get()
127 { return get_impl<I, tuple<Values...> >::get(t); } in get()
130 typename get_impl<I, tuple<Values...> >::const_type get(const tuple<Values...>& t) in get()
131 { return get_impl<I, tuple<Values...> >::get(t); } in get()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/detail/
H A Dold_optional_implementation.hpp167 construct(rhs.get_impl()); in optional_base()
178 construct( boost::move(rhs.get_impl()) ); in optional_base()
216 assign_value(rhs.get_impl(), is_reference_predicate() ); in assign()
222 construct(rhs.get_impl()); in assign()
233 assign_value(boost::move(rhs.get_impl()), is_reference_predicate() ); in assign()
239 construct(boost::move(rhs.get_impl())); in assign()
578 void assign_value ( argument_type val, is_not_reference_tag ) { get_impl() = val; } in assign_value()
581 …void assign_value ( rval_reference_type val, is_not_reference_tag ) { get_impl() = static_cast<rva… in assign_value()
591 …reference_const_type get_impl() const { return dereference(get_object(), is_reference_predicate() … in get_impl() function in boost::optional_detail::optional_base
592 …reference_type get_impl() { return dereference(get_object(), is_reference_predicate() … in get_impl() function in boost::optional_detail::optional_base
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/
H A Doptional.hpp162 construct(rhs.get_impl()); in optional_base()
173 construct( boost::move(rhs.get_impl()) ); in optional_base()
211 assign_value(rhs.get_impl()); in assign()
217 construct(rhs.get_impl()); in assign()
228 assign_value( boost::move(rhs.get_impl()) ); in assign()
234 construct(boost::move(rhs.get_impl())); in assign()
697 void assign_value ( argument_type val ) { get_impl() = val; } in assign_value()
699 …void assign_value ( rval_reference_type val ) { get_impl() = static_cast<rval_reference_type>(val)… in assign_value()
708 reference_const_type get_impl() const { return m_storage.ref() ; } in get_impl() function in boost::optional_detail::optional_base
709 reference_type get_impl() { return m_storage.ref() ; } in get_impl() function in boost::optional_detail::optional_base
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/numeric/conversion/
H A Dbounds.hpp19 struct bounds : boundsdetail::get_impl<N>::type
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/numeric/conversion/detail/
H A Dbounds.hpp44 struct get_impl struct