Searched refs:lvalue_cv_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 | 157 struct lvalue_cv_function_object { struct 160 static_assert(!std::invocable<lvalue_cv_function_object, int*>); 161 static_assert(!std::invocable<lvalue_cv_function_object const, int*>); 162 static_assert(!std::invocable<lvalue_cv_function_object volatile, int*>); 163 static_assert(!std::invocable<lvalue_cv_function_object const volatile, int*>); 164 static_assert(std::invocable<lvalue_cv_function_object&, int*>); 165 static_assert(std::invocable<lvalue_cv_function_object const&, int*>); 166 static_assert(std::invocable<lvalue_cv_function_object volatile&, int*>); 167 static_assert(std::invocable<lvalue_cv_function_object const volatile&, 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 | 170 struct lvalue_cv_function_object { struct 173 static_assert(!std::regular_invocable<lvalue_cv_function_object, int*>); 174 static_assert(!std::regular_invocable<lvalue_cv_function_object const, int*>); 176 !std::regular_invocable<lvalue_cv_function_object volatile, int*>); 178 !std::regular_invocable<lvalue_cv_function_object const volatile, int*>); 179 static_assert(std::regular_invocable<lvalue_cv_function_object&, int*>); 180 static_assert(std::regular_invocable<lvalue_cv_function_object const&, int*>); 182 std::regular_invocable<lvalue_cv_function_object volatile&, int*>); 184 std::regular_invocable<lvalue_cv_function_object const volatile&, int*>);
|