Home
last modified time | relevance | path

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

/external/libcxx/include/experimental/
Dany176 if (__other.__h) __other.__call(_Action::_Copy, this);
182 if (__other.__h) __other.__call(_Action::_Move, this);
224 if (__h) this->__call(_Action::_Destroy);
242 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo));
261 void * __call(_Action __a, any * __other = nullptr,
268 void * __call(_Action __a, any * __other = nullptr,
488 __rhs.__call(_Action::_Move, &__tmp);
489 this->__call(_Action::_Move, &__rhs);
490 __tmp.__call(_Action::_Move, this);
493 this->__call(_Action::_Move, &__rhs);
[all …]
/external/libcxx/include/
Dany189 if (__other.__h) __other.__call(_Action::_Copy, this);
195 if (__other.__h) __other.__call(_Action::_Move, this);
274 void reset() _NOEXCEPT { if (__h) this->__call(_Action::_Destroy); }
287 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo));
306 void * __call(_Action __a, any * __other = nullptr,
314 void * __call(_Action __a, any * __other = nullptr,
541 __rhs.__call(_Action::_Move, &__tmp);
542 this->__call(_Action::_Move, &__rhs);
543 __tmp.__call(_Action::_Move, this);
546 this->__call(_Action::_Move, &__rhs);
[all …]
D__functional_base321 static _Ret __call(_Args&&... __args) {
326 static _Ret __call(_Fn __f) {
331 static _Ret __call(_Fn __f, _A0& __a0) {
336 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
341 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
352 static void __call(_Args&&... __args) {
357 static void __call(_Fn __f) {
362 static void __call(_Fn __f, _A0& __a0) {
367 static void __call(_Fn __f, _A0& __a0, _A1& __a1) {
372 static void __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2) {
D__functional_03164 return _Invoker::__call(__f_.first());
250 return _Invoker::__call(__f_.first(), __a0);
336 return _Invoker::__call(__f_.first(), __a0, __a1);
422 return _Invoker::__call(__f_.first(), __a0, __a1, __a2);
Dfunctional1553 return _Invoker::__call(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...);
2302 return _Invoker::__call(static_cast<base&>(*this), _VSTD::forward<_Args>(__args)...);
2316 … return _Invoker::__call(static_cast<base const&>(*this), _VSTD::forward<_Args>(__args)...);
/external/autotest/client/cros/
Dcryptohome.py575 def __call(self, method, *args): member in CryptohomeProxy
607 out = self.__call(method, *args)
635 out = self.__call(self.iface.Mount, user, password, create, False, [])
647 return self.__call(self.iface.Unmount)
667 return self.__call(self.iface.MigrateKey, user, oldkey, newkey)
674 return self.__call(self.iface.Remove, user)