Searched refs:__call (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/include/experimental/ |
D | any | 177 if (__other.__h) __other.__call(_Action::_Copy, this); 183 if (__other.__h) __other.__call(_Action::_Move, this); 223 if (__h) this->__call(_Action::_Destroy); 240 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo)); 259 void * __call(_Action __a, any * __other = nullptr, 266 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/autotest/client/cros/ |
D | cryptohome.py | 387 def __call(self, method, *args): member in CryptohomeProxy 419 out = self.__call(method, *args) 447 out = self.__call(self.iface.Mount, user, password, create, False, []) 459 return self.__call(self.iface.Unmount) 479 return self.__call(self.iface.MigrateKey, user, oldkey, newkey) 486 return self.__call(self.iface.Remove, user)
|
/external/libcxx/include/ |
D | __functional_base | 436 static _Ret __call(_Args&&... __args) { 441 static _Ret __call(_Fn __f) { 446 static _Ret __call(_Fn __f, _A0& __a0) { 451 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) { 456 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){ 467 static void __call(_Args&&... __args) { 472 static void __call(_Fn __f) { 477 static void __call(_Fn __f, _A0& __a0) { 482 static void __call(_Fn __f, _A0& __a0, _A1& __a1) { 487 static void __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2) {
|
D | __functional_03 | 164 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);
|
D | functional | 1437 return _Invoker::__call(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...); 2236 return _Invoker::__call(static_cast<base&>(*this), _VSTD::forward<_Args>(__args)...); 2250 … return _Invoker::__call(static_cast<base const&>(*this), _VSTD::forward<_Args>(__args)...);
|