Home
last modified time | relevance | path

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

/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dreactive_socket_service_base.ipp45 reactive_socket_service_base::base_implementation_type& other_impl)
47 impl.socket_ = other_impl.socket_;
48 other_impl.socket_ = invalid_socket;
50 impl.state_ = other_impl.state_;
51 other_impl.state_ = 0;
54 impl.reactor_data_, other_impl.reactor_data_);
60 reactive_socket_service_base::base_implementation_type& other_impl)
64 impl.socket_ = other_impl.socket_;
65 other_impl.socket_ = invalid_socket;
67 impl.state_ = other_impl.state_;
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dreactive_socket_service.hpp78 implementation_type& other_impl) in move_construct() argument
80 this->base_move_construct(impl, other_impl); in move_construct()
82 impl.protocol_ = other_impl.protocol_; in move_construct()
83 other_impl.protocol_ = endpoint_type().protocol(); in move_construct()
89 implementation_type& other_impl) in move_assign() argument
91 this->base_move_assign(impl, other_service, other_impl); in move_assign()
93 impl.protocol_ = other_impl.protocol_; in move_assign()
94 other_impl.protocol_ = endpoint_type().protocol(); in move_assign()
101 Protocol1>::implementation_type& other_impl) in converting_move_construct()
103 this->base_move_construct(impl, other_impl); in converting_move_construct()
[all …]
Dreactive_socket_service_base.hpp70 base_implementation_type& other_impl);
75 base_implementation_type& other_impl);
/external/parameter-framework/asio-1.10.6/include/asio/
Dsocket_acceptor_service.hpp70 implementation_type& other_impl) in move_construct() argument
72 service_impl_.move_construct(impl, other_impl); in move_construct()
78 implementation_type& other_impl) in move_assign() argument
80 service_impl_.move_assign(impl, other_service.service_impl_, other_impl); in move_assign()
88 Protocol1>::implementation_type& other_impl, in converting_move_construct()
93 impl, other_impl); in converting_move_construct()
Dstream_socket_service.hpp71 implementation_type& other_impl) in move_construct() argument
73 service_impl_.move_construct(impl, other_impl); in move_construct()
79 implementation_type& other_impl) in move_assign() argument
81 service_impl_.move_assign(impl, other_service.service_impl_, other_impl); in move_assign()
89 Protocol1>::implementation_type& other_impl, in converting_move_construct()
94 impl, other_impl); in converting_move_construct()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dfunction_api_info_test.cc109 std::vector<string> other_impl; in CheckEquivImpl() local
111 lib_api_info.GetEquivalentImplementations(func_name, &other_impl); in CheckEquivImpl()
113 const std::unordered_set<string> actual(other_impl.begin(), other_impl.end()); in CheckEquivImpl()