Searched refs:__invoke (Results 1 - 6 of 6) sorted by relevance

/external/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp37 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "");
38 static_assert(sizeof(std::__invoke(&Type::f2, std::declval<Type const >())) == 2, "");
40 static_assert(sizeof(std::__invoke(&Type::g1, std::declval<Type &>())) == 1, "");
41 static_assert(sizeof(std::__invoke(&Type::g2, std::declval<Type const &>())) == 2, "");
42 static_assert(sizeof(std::__invoke(&Type::g3, std::declval<Type &&>())) == 3, "");
43 static_assert(sizeof(std::__invoke(&Type::g4, std::declval<Type const&&>())) == 4, "");
H A Dinvoke_helpers.h192 // that the method has been called and that the return value of `__invoke`
280 decltype(std::__invoke(ptr, object_cast(object)))
283 CallRet ret = std::__invoke(ptr, object_cast(object));
302 decltype(std::__invoke(ptr, object_cast(object), arg_cast(a0)))
305 CallRet ret = std::__invoke(ptr, object_cast(object), arg_cast(a0));
324 decltype(std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1)))
327 CallRet ret = std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1));
346 decltype(std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1), arg_cast(a2)))
349 CallRet ret = std::__invoke(ptr, object_cast(object), arg_cast(a0), arg_cast(a1), arg_cast(a2));
371 decltype(std::__invoke(object_cas
[all...]
H A Dbullet_4_5_6.pass.cpp176 decltype(std::__invoke(M, obj)), Expect
178 Expect e = std::__invoke(M, obj);
190 decltype(std::__invoke(M, std::forward<T>(obj))), Expect
192 Expect e = std::__invoke(M, std::forward<T>(obj));
H A Dbullet_1_2_3.pass.cpp262 auto& ret = std::__invoke(get_fn, r);
266 auto& ret2 = std::__invoke(get_fn, d);
270 auto& ret3 = std::__invoke(get_fn, r2);
/external/skia/tools/skpbench/
H A D_adb.py22 self.__invoke('shell', cmd)
34 self.__invoke('root')
35 self.__invoke('wait-for-device')
45 self.__invoke('remount')
50 self.__invoke('shell', 'echo', '$(whoami)@$(getprop ro.serialno)$',
53 def __invoke(self, *args): member in class:Adb
/external/libcxx/test/std/utilities/function.objects/func.not_fn/
H A Dnot_fn.pass.cpp563 LIBCPP_STATIC_ASSERT(noexcept(!_VSTD::__invoke(value)), "");

Completed in 221 milliseconds