Home
last modified time | relevance | path

Searched defs:f2a (Results 1 – 3 of 3) sorted by relevance

/llvm-project/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
H A Dnoncopyable_return_type.pass.cpp46 std::function<NonCopyable()> f2a = +[]() { return NonCopyable(); }; in test() local
63 std::function<const NonCopyable()> f2a = +[]() { return NonCopyable(); }; in const_test() local
80 std::function<void()> f2a = +[]() { return NonCopyable(); }; in void_test() local
92 std::function<const void()> f2a = +[]() { return NonCopyable(); }; in const_void_test() local
104 std::function<NonCopyable(LargeLambda&)> f2a = &LargeLambda::f; in member_pointer_test() local
127 std::function f2a = +[]() { return NonCopyable(); }; in ctad_test() local
/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp79 function<int(int, int)> f2a; in test_function() local
/llvm-project/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp7-cxx14.cpp74 auto f2a(int n) { return n; } in f2a() function