Home
last modified time | relevance | path

Searched refs:get_ptr_impl (Results 1 – 2 of 2) sorted by relevance

/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.hpp346 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr()
347 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr()
594 …pointer_const_type get_ptr_impl() const { return cast_ptr(get_object(), is_reference_predicate() )… in get_ptr_impl() function in boost::optional_detail::optional_base
595 …pointer_type get_ptr_impl() { return cast_ptr(get_object(), is_reference_predicate() )… in get_ptr_impl() function in boost::optional_detail::optional_base
624 …void destroy_impl ( is_not_reference_tag ) { get_ptr_impl()->internal_type::~internal_type() ; m_i… in destroy_impl()
626 void destroy_impl ( is_not_reference_tag ) { get_ptr_impl()->~T() ; m_initialized = false ; } in destroy_impl()
915 …st_type operator->() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } in operator ->()
916 …e operator->() { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } in operator ->()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/
H A Doptional.hpp341 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr()
342 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr()
711 pointer_const_type get_ptr_impl() const { return m_storage.ptr_ref(); } in get_ptr_impl() function in boost::optional_detail::optional_base
712 pointer_type get_ptr_impl() { return m_storage.ptr_ref(); } in get_ptr_impl() function in boost::optional_detail::optional_base
1116 …st_type operator->() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } in operator ->()
1117 …e operator->() { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } in operator ->()