/external/libcxx/include/ |
D | __functional_base_03 | 16 // __invoke 68 __nat __invoke(__any, ...); 75 __invoke(_Fn __f, _T1& __t1) { 82 __invoke(_Fn __f, _T1& __t1, _A0& __a0) { 89 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) { 96 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) { 103 __invoke(_Fn __f, _T1& __t1) { 110 __invoke(_Fn __f, _T1& __t1, _A0& __a0) { 117 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) { 124 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) { [all …]
|
D | __functional_base | 302 typedef decltype(__invoke(_VSTD::declval<_Tp>(), _VSTD::declval<_Args>()...)) type; 318 return __invoke(_VSTD::forward<_Args>(__args)...); 323 return __invoke(__f); 328 return __invoke(__f, __a0); 333 return __invoke(__f, __a0, __a1); 338 return __invoke(__f, __a0, __a1, __a2); 349 __invoke(_VSTD::forward<_Args>(__args)...); 354 __invoke(__f); 359 __invoke(__f, __a0); 364 __invoke(__f, __a0, __a1); [all …]
|
D | functional | 1288 return __invoke(__f_, _VSTD::forward<_ArgTypes>(__args)...); 1296 return __invoke(__f_, __a0); 1303 return __invoke(__f_, __a0); 1310 return __invoke(__f_, __a0, __a1); 1317 return __invoke(__f_, __a0, __a1); 1324 return __invoke(__f_, __a0, __a1); 1331 return __invoke(__f_, __a0, __a1); 1338 return __invoke(__f_, __a0, __a1, __a2); 1345 return __invoke(__f_, __a0, __a1, __a2); 1352 return __invoke(__f_, __a0, __a1, __a2); [all …]
|
D | type_traits | 4245 // __invoke forward declarations 4254 auto __invoke(__any, _Args&& ...__args) -> __nat; 4265 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 4279 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 4293 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 4309 __invoke(_Fp&& __f, _A0&& __a0) 4323 __invoke(_Fp&& __f, _A0&& __a0) 4337 __invoke(_Fp&& __f, _A0&& __a0) 4352 __invoke(_Fp&& __f, _Args&& ...__args) 4371 _VSTD::__invoke(_VSTD::declval<_Fp>(), _VSTD::declval<_Args>()...)); [all …]
|
D | thread | 342 __invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
|
D | mutex | 622 __invoke(_VSTD::get<0>(_VSTD::move(__f_)), _VSTD::get<_Indices>(_VSTD::move(__f_))...);
|
D | future | 1821 return __invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...); 2325 … return __invoke(_VSTD::move(_VSTD::get<0>(__f_)), _VSTD::move(_VSTD::get<_Indices>(__f_))...);
|
/external/skqp/tools/skpbench/ |
D | _adb.py | 23 self.__invoke('shell', cmd) 35 self.__invoke('root') 36 self.__invoke('wait-for-device') 46 self.__invoke('remount') 51 self.__invoke('wait-for-device') 58 self.__invoke('shell', 'echo', '$(whoami)@$(getprop ro.serialno)$', 61 def __invoke(self, *args): member in Adb
|
/external/skia/tools/skpbench/ |
D | _adb.py | 23 self.__invoke('shell', cmd) 35 self.__invoke('root') 36 self.__invoke('wait-for-device') 46 self.__invoke('remount') 51 self.__invoke('wait-for-device') 58 self.__invoke('shell', 'echo', '$(whoami)@$(getprop ro.serialno)$', 61 def __invoke(self, *args): member in Adb
|
/external/libcxx/test/libcxx/utilities/function.objects/func.require/ |
D | invoke.pass.cpp | 37 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, ""); in main() 38 static_assert(sizeof(std::__invoke(&Type::f2, std::declval<Type const >())) == 2, ""); in main() 40 static_assert(sizeof(std::__invoke(&Type::g1, std::declval<Type &>())) == 1, ""); in main() 41 static_assert(sizeof(std::__invoke(&Type::g2, std::declval<Type const &>())) == 2, ""); in main() 42 static_assert(sizeof(std::__invoke(&Type::g3, std::declval<Type &&>())) == 3, ""); in main() 43 static_assert(sizeof(std::__invoke(&Type::g4, std::declval<Type const&&>())) == 4, ""); in main()
|
D | invoke_helpers.h | 280 decltype(std::__invoke(ptr, object_cast(object))) in runTestImp() 283 CallRet ret = std::__invoke(ptr, object_cast(object)); in runTestImp() 302 decltype(std::__invoke(ptr, object_cast(object), arg_cast(a0))) in runTestImp() 305 CallRet ret = std::__invoke(ptr, object_cast(object), arg_cast(a0)); in runTestImp() 324 decltype(std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1))) in runTestImp() 327 CallRet ret = std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1)); in runTestImp() 346 … decltype(std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1), arg_cast(a2))) in runTestImp() 349 … CallRet ret = std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1), arg_cast(a2)); in runTestImp() 371 decltype(std::__invoke(object_cast(object))) in runTestImp() 374 CallRet ret = std::__invoke(object_cast(object)); in runTestImp() [all …]
|
D | bullet_4_5_6.pass.cpp | 176 decltype(std::__invoke(M, obj)), Expect in runTest() 178 Expect e = std::__invoke(M, obj); in runTest() 190 decltype(std::__invoke(M, std::forward<T>(obj))), Expect in runTest() 192 Expect e = std::__invoke(M, std::forward<T>(obj)); in runTest()
|
D | bullet_1_2_3.pass.cpp | 262 auto& ret = std::__invoke(get_fn, r); in test_derived_from_ref_wrap() 266 auto& ret2 = std::__invoke(get_fn, d); in test_derived_from_ref_wrap() 270 auto& ret3 = std::__invoke(get_fn, r2); in test_derived_from_ref_wrap()
|
/external/clang/test/CodeGenObjC/ |
D | arc-captured-32bit-block-var-layout-2.m | 46 12 void (*__invoke)(void *);
|
/external/libcxx/test/std/utilities/function.objects/func.not_fn/ |
D | not_fn.pass.cpp | 567 LIBCPP_STATIC_ASSERT(noexcept(!_VSTD::__invoke(value)), ""); in call_operator_noexcept_test()
|