/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
addressof.hpp | 2 // detail/addressof.hpp 22 using std::addressof;
|
handler_cont_helpers.hpp | 16 #include "asio/detail/addressof.hpp" 34 asio::detail::addressof(context));
|
handler_alloc_helpers.hpp | 16 #include "asio/detail/addressof.hpp" 34 return asio_handler_allocate(s, asio::detail::addressof(h)); 45 asio_handler_deallocate(p, s, asio::detail::addressof(h));
|
handler_invoke_helpers.hpp | 16 #include "asio/detail/addressof.hpp" 34 asio_handler_invoke(function, asio::detail::addressof(context)); 46 asio_handler_invoke(function, asio::detail::addressof(context));
|
completion_handler.hpp | 15 #include "asio/detail/addressof.hpp" 45 ptr p = { asio::detail::addressof(h->handler_), h, h }; 56 p.h = asio::detail::addressof(handler);
|
reactive_null_buffers_op.hpp | 16 #include "asio/detail/addressof.hpp" 51 ptr p = { asio::detail::addressof(o->handler_), o, o }; 63 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_connect_op.hpp | 16 #include "asio/detail/addressof.hpp" 69 ptr p = { asio::detail::addressof(o->handler_), o, o }; 81 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_send_op.hpp | 16 #include "asio/detail/addressof.hpp" 83 ptr p = { asio::detail::addressof(o->handler_), o, o }; 95 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_accept_op.hpp | 16 #include "asio/detail/addressof.hpp" 99 ptr p = { asio::detail::addressof(o->handler_), o, o }; 111 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_recv_op.hpp | 16 #include "asio/detail/addressof.hpp" 86 ptr p = { asio::detail::addressof(o->handler_), o, o }; 98 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_recvfrom_op.hpp | 16 #include "asio/detail/addressof.hpp" 96 ptr p = { asio::detail::addressof(o->handler_), o, o }; 108 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_recvmsg_op.hpp | 16 #include "asio/detail/addressof.hpp" 88 ptr p = { asio::detail::addressof(o->handler_), o, o }; 100 p.h = asio::detail::addressof(handler.handler_);
|
reactive_socket_sendto_op.hpp | 16 #include "asio/detail/addressof.hpp" 86 ptr p = { asio::detail::addressof(o->handler_), o, o }; 98 p.h = asio::detail::addressof(handler.handler_);
|
resolve_endpoint_op.hpp | 19 #include "asio/detail/addressof.hpp" 57 ptr p = { asio::detail::addressof(o->handler_), o, o }; 91 p.h = asio::detail::addressof(handler.handler_);
|
resolve_op.hpp | 20 #include "asio/detail/addressof.hpp" 65 ptr p = { asio::detail::addressof(o->handler_), o, o }; 96 p.h = asio::detail::addressof(handler.handler_);
|
/external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/ |
addressof.pass.cpp | 12 // template <ObjectType T> T* addressof(T& r); 35 assert(std::addressof(i) == &i); 36 assert(std::addressof(d) == &d); 39 assert(std::addressof(*tp) == tp); 40 assert(std::addressof(*ctp) == tp); 49 assert(std::addressof(n) == (void*)std::addressof(i));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/specialized.addressof/ |
addressof.pass.cpp | 12 // template <ObjectType T> T* addressof(T& r); 35 assert(std::addressof(i) == &i); 36 assert(std::addressof(d) == &d); 39 assert(std::addressof(*tp) == tp); 40 assert(std::addressof(*ctp) == tp); 49 assert(std::addressof(n) == (void*)std::addressof(i));
|
/external/clang/test/CXX/expr/expr.post/expr.static.cast/ |
p9-0x.cpp | 23 template <class _Tp> inline _Tp* addressof(_Tp& __x) { function in namespace:PR9107 28 addressof(a);
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
task_io_service.hpp | 15 #include "asio/detail/addressof.hpp" 39 typename op::ptr p = { asio::detail::addressof(handler), 59 typename op::ptr p = { asio::detail::addressof(handler),
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/ |
addressof.hpp | 51 template<class T> T * addressof( T & v ) function in namespace:boost 77 typename detail::addressof_addp< T[N] >::type addressof( T (&t)[N] ) 88 T (*addressof(T (&t)[N]))[N] 94 const T (*addressof(const T (&t)[N]))[N] function in namespace:boost
|
/external/clang/test/CodeGenCXX/ |
builtins.cpp | 13 S *addressof(bool b, S &s, S &t) { function
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
utility.hpp | 12 #include <boost/utility/addressof.hpp>
|
/external/clang/test/Analysis/ |
cxx11-crashes.cpp | 54 template<class T> T * addressof( T & v ) { function 59 addressof(s);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
optional | 204 ::new(_VSTD::addressof(__val_)) value_type(__x.__val_); 213 ::new(_VSTD::addressof(__val_)) value_type(_VSTD::move(__x.__val_)); 255 ::new(_VSTD::addressof(__val_)) value_type(__x.__val_); 264 ::new(_VSTD::addressof(__val_)) value_type(_VSTD::move(__x.__val_)); 361 ::new(_VSTD::addressof(this->__val_)) value_type(__opt.__val_); 383 ::new(_VSTD::addressof(this->__val_)) value_type(_VSTD::move(__opt.__val_)); 405 ::new(_VSTD::addressof(this->__val_)) value_type(_VSTD::forward<_Up>(__v)); 422 ::new(_VSTD::addressof(this->__val_)) value_type(_VSTD::forward<_Args>(__args)...); 437 ::new(_VSTD::addressof(this->__val_)) value_type(__il, _VSTD::forward<_Args>(__args)...); 457 ::new(_VSTD::addressof(__opt.__val_)) value_type(_VSTD::move(this->__val_)) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
optional | 204 ::new(_VSTD::addressof(__val_)) value_type(__x.__val_); 213 ::new(_VSTD::addressof(__val_)) value_type(_VSTD::move(__x.__val_)); 255 ::new(_VSTD::addressof(__val_)) value_type(__x.__val_); 264 ::new(_VSTD::addressof(__val_)) value_type(_VSTD::move(__x.__val_)); 361 ::new(_VSTD::addressof(this->__val_)) value_type(__opt.__val_); 383 ::new(_VSTD::addressof(this->__val_)) value_type(_VSTD::move(__opt.__val_)); 405 ::new(_VSTD::addressof(this->__val_)) value_type(_VSTD::forward<_Up>(__v)); 422 ::new(_VSTD::addressof(this->__val_)) value_type(_VSTD::forward<_Args>(__args)...); 437 ::new(_VSTD::addressof(this->__val_)) value_type(__il, _VSTD::forward<_Args>(__args)...); 457 ::new(_VSTD::addressof(__opt.__val_)) value_type(_VSTD::move(this->__val_)) [all...] |