HomeSort by relevance Sort by last modified time
    Searched refs:__invoke (Results 1 - 12 of 12) sorted by null

  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke.pass.cpp 37 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, "");
invoke_helpers.h 192 // 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_cast(object))
    [all...]
bullet_4_5_6.pass.cpp 176 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));
bullet_1_2_3.pass.cpp 262 auto& ret = std::__invoke(get_fn, r);
266 auto& ret2 = std::__invoke(get_fn, d);
270 auto& ret3 = std::__invoke(get_fn, r2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
invoke.pass.cpp 37 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, "");
invoke_helpers.h 192 // 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_cast(object))
    [all...]
bullet_4_5_6.pass.cpp 176 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));
bullet_1_2_3.pass.cpp 262 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/
_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 class:Adb
  /external/skqp/tools/skpbench/
_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 class:Adb
  /external/libcxx/test/std/utilities/function.objects/func.not_fn/
not_fn.pass.cpp 567 LIBCPP_STATIC_ASSERT(noexcept(!_VSTD::__invoke(value)), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.not_fn/
not_fn.pass.cpp 563 LIBCPP_STATIC_ASSERT(noexcept(!_VSTD::__invoke(value)), "");

Completed in 285 milliseconds