Searched refs:Fun (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_testing_helpers.h | 89 template <class Fun, class /*Enabler*/ = void> 92 template <class Fun> 94 Fun, absl::void_t<decltype(std::declval<const Fun&>()())>> 96 using result_type = decltype(std::declval<const Fun&>()()); 104 template <class Fun> 105 struct IsNullaryCallable : IsNullaryCallableImpl<Fun> {}; 112 template <class Fun> 115 // A type that contains a tuple of GeneratorType<Fun> where each Fun ha [all...] |
H A D | conformance_testing.h | 81 template <class Fun> 83 decltype(std::declval<const Fun&>()()) operator()() const 84 noexcept(noexcept(std::declval<const Fun&>()())) { in noexcept() 88 Fun fun; 94 template <class Fun, 95 absl::enable_if_t<IsNullaryCallable<Fun>::value>** = nullptr> 96 GeneratorType<Fun> Generator(Fun fun, const char* description) { in Generator() 97 return GeneratorType<Fun>{absl::move(fun), description}; in Generator() 298 template <class Fun> [all...] |
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerExtFunctionsWeakAlias.cpp | 34 static T *GetFnPtr(T *Fun, T *FunDef, const char *FnName, bool WarnIfMissing) { in GetFnPtr() argument 35 if (Fun == FunDef) { in GetFnPtr() 40 return Fun; in GetFnPtr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Errno.h | 32 template <typename FailT, typename Fun, typename... Args> 33 inline auto RetryAfterSignal(const FailT &Fail, const Fun &F,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/functional/internal/ |
H A D | function_ref.h | 77 template <typename Fun, typename R, typename... Args> 79 auto f = reinterpret_cast<Fun>(ptr.fun); in InvokeFunction()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 930 template <typename Fun, typename... Args> 931 true_given<decltype(std::declval<Fun>()(std::declval<Args>()...))> static test(int); 939 template <typename Fun, typename... Args> 940 struct is_callable<Fun(Args...)> : decltype(is_callable_tester::test<Fun, Args...>(0)) {}; 6562 template <typename Fun, typename... Args> 6563 static Result invoke(Fun&& fun, Args&&... args) { 6564 return std::forward<Fun>(fun)(std::forward<Args>(args)...); 6569 template <typename Fun, typename... Args> 6570 static CompleteType_t<void> invoke(Fun [all...] |
Completed in 13 milliseconds