Home
last modified time | relevance | path

Searched refs:cl_obj (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.invoke/
H A Dinvoke_constexpr.pass.cpp170 TestClass cl_obj(42); in bullet_one_two_tests() local
171 std::reference_wrapper<TestClass> cl(cl_obj); in bullet_one_two_tests()
179 DerivedFromTestClass cl_obj(42); in bullet_one_two_tests() local
188 TestClass cl_obj(42); in bullet_one_two_tests() local
189 TestClass *cl = &cl_obj; in bullet_one_two_tests()
194 DerivedFromTestClass cl_obj(42); in bullet_one_two_tests() local
195 DerivedFromTestClass *cl = &cl_obj; in bullet_one_two_tests()
235 Fn cl_obj(42); in bullet_three_four_tests() local
236 Fn* cl = &cl_obj; in bullet_three_four_tests()
242 Fn cl_obj(42); in bullet_three_four_tests() local
[all …]
H A Dinvoke.pass.cpp181 TestClass cl_obj(42); in bullet_one_two_tests() local
182 std::reference_wrapper<TestClass> cl(cl_obj); in bullet_one_two_tests()
194 DerivedFromTestClass cl_obj(42); in bullet_one_two_tests() local
207 TestClass cl_obj(42); in bullet_one_two_tests() local
208 TestClass *cl = &cl_obj; in bullet_one_two_tests()
215 DerivedFromTestClass cl_obj(42); in bullet_one_two_tests() local
216 DerivedFromTestClass *cl = &cl_obj; in bullet_one_two_tests()
269 Fn cl_obj(42); in bullet_three_four_tests() local
270 Fn* cl = &cl_obj; in bullet_three_four_tests()
278 Fn cl_obj(42); in bullet_three_four_tests() local
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dbuiltin-classify-type.cpp34 cl cl_obj; in foo() local
57 int a12[__builtin_classify_type(cl_obj) == record_type_class ? 1 : -1]; in foo()