Home
last modified time | relevance | path

Searched refs:MemFunCallable (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libcxx/test/std/utilities/function.objects/func.not_fn/
H A Dnot_fn.pass.cpp209 MemFunCallable mt(true); in other_callable_types_test()
210 const MemFunCallable mf(false); in other_callable_types_test()
211 auto ret = std::not_fn(&MemFunCallable::return_value); in other_callable_types_test()
218 MemFunCallable mt(true); in other_callable_types_test()
219 MemFunCallable mf(false); in other_callable_types_test()
220 auto ret = std::not_fn(&MemFunCallable::return_value_nc); in other_callable_types_test()
227 MemFunCallable mt(true); in other_callable_types_test()
228 const MemFunCallable mf(false); in other_callable_types_test()
229 auto ret = std::not_fn(&MemFunCallable::value); in other_callable_types_test()
275 using T = decltype(std::not_fn(&MemFunCallable::return_value_nc)); in call_operator_sfinae_test()
[all …]
/llvm-project/libcxx/test/support/
H A Dcallable_types.h110 struct MemFunCallable { struct
111 constexpr explicit MemFunCallable(bool x) : value(x) {} in MemFunCallable() argument