Home
last modified time | relevance | path

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

/llvm-project/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()
97 auto z = [x=get_foo()]() {}; in elided_lambda_capture_init()
117 return ({ get_foo(); }); in elided_return_stmt_expr()
127 ({ get_foo(); }); in elided_stmt_expr()
138 ({ get_bar(); get_foo(); }); in elided_stmt_expr_multiple_stmts()
156 TwoFoos x{get_foo(), get_foo()}; in elided_aggregate_init()
176 return TwoFoos{get_foo(), get_foo()}; in return_aggregate_init()
[all …]
/llvm-project/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/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/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
H A Dref.incomplete.pass.cpp27 Foo& get_foo();
30 Foo& foo = get_foo(); in test()
37 Foo& get_foo() { in get_foo() function
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
/llvm-project/llvm/test/CodeGen/SystemZ/
H A Dpie.ll5 define dso_local ptr @get_foo() {
/llvm-project/llvm/test/CodeGen/ARM/
H A Dpie.ll5 define dso_local ptr @get_foo() {
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/
H A Davoid-capturing-lambda-coroutines.rst29 std::shared_ptr<Foo> sharedFoo = get_foo();
/llvm-project/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()