Home
last modified time | relevance | path

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

/freebsd/contrib/atf/atf-c++/detail/
H A Dauto_array.hpp38 struct auto_array_ref { struct
41 explicit auto_array_ref(T*);
45 auto_array_ref< T >::auto_array_ref(T* ptr) : in auto_array_ref() function in atf::auto_array_ref
57 auto_array(auto_array_ref< T >) throw();
66 auto_array< T >& operator=(auto_array_ref< T >) throw();
69 operator auto_array_ref< T >(void) throw();
87 auto_array< T >::auto_array(auto_array_ref< T > ref) in auto_array()
148 auto_array< T >::operator=(auto_array_ref< T > ref) in operator =()
167 auto_array< T >::operator auto_array_ref< T >(void) in operator auto_array_ref<T>()
170 return auto_array_ref< T >(release()); in operator auto_array_ref<T>()
/freebsd/contrib/kyua/utils/
H A Dauto_array.hpp53 class auto_array_ref { class
60 explicit auto_array_ref(T*);
82 auto_array(detail::auto_array_ref< T >) throw();
92 auto_array< T >& operator=(detail::auto_array_ref< T >) throw();
95 operator detail::auto_array_ref< T >(void) throw();
H A Dauto_array.ipp40 /// Constructs a new auto_array_ref from a pointer.
44 auto_array_ref< T >::auto_array_ref(T* ptr) :
84 auto_array< T >::auto_array(detail::auto_array_ref< T > ref) throw() :
169 auto_array< T >::operator=(detail::auto_array_ref< T > ref) throw()
216 /// \return A new detail::auto_array_ref object holding the pointer.
218 auto_array< T >::operator detail::auto_array_ref< T >(void) throw()
220 return detail::auto_array_ref< T >(release());