Home
last modified time | relevance | path

Searched refs:get_foo (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/
H A Dmore-dtors-cfg-output.cpp27 Foo get_foo();
46 Foo x = get_foo(); in elided_assign()
62 Foo x(get_foo()); in elided_paren_init()
78 Foo x{get_foo()}; in elided_brace_init()
117 return ({ get_foo(); }); in elided_return_stmt_expr()
127 ({ get_foo(); }); in elided_stmt_expr()
156 TwoFoos x{get_foo(), get_foo()}; in elided_aggregate_init()
176 return TwoFoos{get_foo(), get_foo()}; in return_aggregate_init()
186 const Foo &x = (get_foo(), get_foo()); in lifetime_extended()
195 Foo x = (get_foo(), get_foo()); in not_lifetime_extended()
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/refwrap/refwrap.invoke/
H A Dinvoke.incomplete.compile.fail.cpp25 Foo& get_foo();
28 std::reference_wrapper<Foo> ref = get_foo(); in test()
33 Foo& get_foo() { static Foo foo; return foo; } in get_foo() function
/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/refwrap/refwrap.const/
H A Dctor.incomplete.pass.cpp26 Foo& get_foo();
29 Foo& foo = get_foo(); in test()
36 Foo& get_foo() { in get_foo() function
/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
H A Dcref.incomplete.pass.cpp27 Foo& get_foo();
30 Foo const& foo = get_foo(); in test()
37 Foo& get_foo() { in get_foo() function
H A Dref.incomplete.pass.cpp27 Foo& get_foo();
30 Foo& foo = get_foo(); in test()
37 Foo& get_foo() { in get_foo() function
/llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/
H A Dpie.ll5 define dso_local i32* @get_foo() {
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dpie.ll5 define dso_local i32* @get_foo() {
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-unsequenced.cpp273 foo get_foo(int);
277 get_foo(a).bar(a++); // cxx11-warning {{unsequenced modification and access to 'a'}} in g()