Searched refs:lvalue_volatile_function_object (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/concepts/concepts.callable/concept.invocable/ |
H A D | invocable.compile.pass.cpp | 140 struct lvalue_volatile_function_object { struct 143 static_assert(!std::invocable<lvalue_volatile_function_object, int, int>); 144 static_assert(!std::invocable<lvalue_volatile_function_object const, int, int>); 146 !std::invocable<lvalue_volatile_function_object volatile, int, int>); 148 !std::invocable<lvalue_volatile_function_object const volatile, int, int>); 149 static_assert(std::invocable<lvalue_volatile_function_object&, int, int>); 151 !std::invocable<lvalue_volatile_function_object const&, int, int>); 153 std::invocable<lvalue_volatile_function_object volatile&, int, int>); 155 !std::invocable<lvalue_volatile_function_object const volatile&, int, int>);
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/concepts/concepts.callable/concept.regularinvocable/ |
H A D | regular_invocable.compile.pass.cpp | 150 struct lvalue_volatile_function_object { struct 154 !std::regular_invocable<lvalue_volatile_function_object, int, int>); 156 !std::regular_invocable<lvalue_volatile_function_object const, int, int>); 157 static_assert(!std::regular_invocable<lvalue_volatile_function_object volatile, 160 lvalue_volatile_function_object const volatile, int, int>); 162 std::regular_invocable<lvalue_volatile_function_object&, int, int>); 164 !std::regular_invocable<lvalue_volatile_function_object const&, int, int>); 165 static_assert(std::regular_invocable<lvalue_volatile_function_object volatile&, 168 lvalue_volatile_function_object const volatile&, int, int>);
|