Searched refs:__call (Results 1 – 5 of 5) sorted by relevance
/external/autotest/client/cros/ |
D | cryptohome.py | 609 def __call(self, method, *args): member in CryptohomeProxy 641 out = self.__call(method, *args) 669 out = self.__call(self.iface.Mount, user, password, create, False, []) 681 return self.__call(self.iface.Unmount) 701 return self.__call(self.iface.MigrateKey, user, oldkey, newkey) 708 return self.__call(self.iface.Remove, user) 729 if not self.__call(self.iface.InstallAttributesSet, key, 732 return self.__call(self.iface.InstallAttributesFinalize)
|
/external/libcxx/include/ |
D | any | 191 if (__other.__h) __other.__call(_Action::_Copy, this); 197 if (__other.__h) __other.__call(_Action::_Move, this); 276 void reset() _NOEXCEPT { if (__h) this->__call(_Action::_Destroy); } 289 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo)); 308 void * __call(_Action __a, any * __other = nullptr, 316 void * __call(_Action __a, any * __other = nullptr, 545 __rhs.__call(_Action::_Move, &__tmp); 546 this->__call(_Action::_Move, &__rhs); 547 __tmp.__call(_Action::_Move, this); 550 this->__call(_Action::_Move, &__rhs); [all …]
|
D | __functional_base | 317 static _Ret __call(_Args&&... __args) { 322 static _Ret __call(_Fn __f) { 327 static _Ret __call(_Fn __f, _A0& __a0) { 332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) { 337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){ 348 static void __call(_Args&&... __args) { 353 static void __call(_Fn __f) { 358 static void __call(_Fn __f, _A0& __a0) { 363 static void __call(_Fn __f, _A0& __a0, _A1& __a1) { 368 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 | 1562 return _Invoker::__call(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...); 2303 return _Invoker::__call(static_cast<base&>(*this), _VSTD::forward<_Args>(__args)...); 2317 … return _Invoker::__call(static_cast<base const&>(*this), _VSTD::forward<_Args>(__args)...);
|