Home | Sort by relevance Sort by last modified time |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/ | |
optional.hpp | 447 pointer_const_type get_ptr_impl() const { return cast_ptr(get_object(), is_reference_predicate() ) ; } 448 pointer_type get_ptr_impl() { return cast_ptr(get_object(), is_reference_predicate() ) ; } 487 pointer_const_type cast_ptr( internal_type const* p, is_not_reference_tag ) const { return p ; } function in class:boost::optional_detail::optional_base 488 pointer_type cast_ptr( internal_type * p, is_not_reference_tag ) { return p ; } function in class:boost::optional_detail::optional_base 489 pointer_const_type cast_ptr( internal_type const* p, is_reference_tag ) const { return &p->get() ; } function in class:boost::optional_detail::optional_base 490 pointer_type cast_ptr( internal_type * p, is_reference_tag ) { return &p->get() ; } function in class:boost::optional_detail::optional_base |