Lines Matching refs:__other
195 _LIBCPP_HIDE_FROM_ABI any(any const& __other) : __h_(nullptr) {
196 if (__other.__h_)
197 __other.__call(_Action::_Copy, this);
200 _LIBCPP_HIDE_FROM_ABI any(any&& __other) _NOEXCEPT : __h_(nullptr) {
201 if (__other.__h_)
202 __other.__call(_Action::_Move, this);
289 …__call(_Action __a, any* __other = nullptr, type_info const* __info = nullptr, const void* __fallb…
291 return __h_(__a, this, __other, __info, __fallback_info);
295 …_Action __a, any* __other = nullptr, type_info const* __info = nullptr, const void* __fallback_inf…
296 return __h_(__a, this, __other, __info, __fallback_info);
318 …__handle(_Action __act, any const* __this, any* __other, type_info const* __info, const void* __fa…
324 __copy(*__this, *__other);
327 __move(const_cast<any&>(*__this), *__other);
385 …__handle(_Action __act, any const* __this, any* __other, type_info const* __info, void const* __fa…
391 __copy(*__this, *__other);
394 __move(const_cast<any&>(*__this), *__other);