/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_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);
|
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));
|
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_);
|
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_);
|
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_);
|
/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/clang/test/CodeGenCXX/ |
builtins.cpp | 13 S *addressof(bool b, S &s, S &t) { function
|
/external/libcxx/test/std/containers/sequences/array/ |
contiguous.pass.cpp | 21 assert ( *(c.begin() + i) == *(std::addressof(*c.begin()) + i));
|
/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
|
/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);
|
/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),
|
/external/clang/test/SemaCXX/ |
builtins.cpp | 28 namespace addressof { namespace
|
/external/libcxx/test/std/containers/sequences/vector/ |
contiguous.pass.cpp | 24 assert ( *(c.begin() + i) == *(std::addressof(*c.begin()) + i));
|
/external/libcxx/test/std/strings/basic.string/string.require/ |
contiguous.pass.cpp | 25 assert ( *(c.begin() + i) == *(std::addressof(*c.begin()) + i));
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
class_properties.hpp | 29 #include <boost/utility/addressof.hpp> 157 arrow_res_t operator->() const { return boost::addressof( base_prop::value ); } 201 arrow_res_t operator->() { return boost::addressof( base_prop::value ); } 202 const_arrow_res_t operator->() const { return boost::addressof( base_prop::value ); }
|