Searched refs:get_foo (Results 1 – 9 of 9) sorted by relevance
27 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 …]
25 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
26 Foo& get_foo();29 Foo& foo = get_foo(); in test()36 Foo& get_foo() { in get_foo() function
27 Foo& get_foo();30 Foo& foo = get_foo(); in test()37 Foo& get_foo() { in get_foo() function
27 Foo& get_foo();30 Foo const& foo = get_foo(); in test()37 Foo& get_foo() { in get_foo() function
5 define dso_local ptr @get_foo() {
29 std::shared_ptr<Foo> sharedFoo = get_foo();
273 foo get_foo(int);277 get_foo(a).bar(a++); // cxx11-warning {{unsequenced modification and access to 'a'}} in g()