Home
last modified time | relevance | path

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

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
Doptional.hpp337 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr()
338 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr()
447 …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
448 …pointer_type get_ptr_impl() { return cast_ptr(get_object(), is_reference_predicate() )… in get_ptr_impl() function in boost::optional_detail::optional_base
477 …void destroy_impl ( is_not_reference_tag ) { get_ptr_impl()->internal_type::~internal_type() ; m_i… in destroy_impl()
479 void destroy_impl ( is_not_reference_tag ) { get_ptr_impl()->T::~T() ; m_initialized = false ; } in destroy_impl()
640 …st_type operator->() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } in operator ->()
641 …e operator->() { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; } in operator ->()