| /llvm-project-15.0.7/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.2nd/ |
| H A D | binder2nd.pass.cpp | 36 : public std::binder2nd<test_func> 38 typedef std::binder2nd<test_func> base; 40 test() : std::binder2nd<test_func>(test_func(3), 4.5) {} in test() 45 std::unary_function<test_func::first_argument_type, in do_test() 46 test_func::result_type>, in do_test()
|
| H A D | binder2nd.depr_in_cxx11.verify.cpp | 23 …typedef std::binder2nd<test_func> B2ND; // expected-warning {{'binder2nd<test_func>' is deprecated… in main()
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.1st/ |
| H A D | binder1st.pass.cpp | 36 : public std::binder1st<test_func> 38 typedef std::binder1st<test_func> base; 40 test() : std::binder1st<test_func>(test_func(2), 30) {} in test() 45 std::unary_function<test_func::second_argument_type, in do_test() 46 test_func::result_type>, in do_test()
|
| H A D | binder1st.depr_in_cxx11.verify.cpp | 23 …typedef std::binder1st<test_func> B1ST; // expected-warning {{'binder1st<test_func>' is deprecated… in main()
|
| /llvm-project-15.0.7/bolt/test/X86/Inputs/ |
| H A D | sctc_bug4.s | 9 .globl test_func 10 .type test_func, @function 12 test_func: label 59 .size test_func, .-test_func
|
| /llvm-project-15.0.7/lldb/unittests/debugserver/ |
| H A D | JSONTest.cpp | 15 void TestJSON(JSONValue *json_val, const std::function<void(T &)> &test_func) { in TestJSON() argument 18 test_func(static_cast<T &>(*json_val)); in TestJSON() 28 const std::function<void(T &)> &test_func = [](T &) {}) { in ParseAndTestJSON() argument 30 TestJSON<T>(json_val.get(), test_func);
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/scripted_bkpt/ |
| H A D | main.c | 4 test_func() in test_func() function 19 test_func(); in main()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/BPF/ |
| H A D | elf-symbol-information.ll | 4 ; CHECK: 8 FUNC GLOBAL DEFAULT 2 test_func 5 define void @test_func() {
|
| /llvm-project-15.0.7/clang/test/CodeGenOpenCL/ |
| H A D | const-str-array-decay.cl | 3 int test_func(constant char* foo); 6 test_func("Test string literal");
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.lib.binders/ |
| H A D | test_func.h | 12 class test_func 20 explicit test_func(int id) : id_(id) {} in test_func() function
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/any/any.class/any.cons/ |
| H A D | in_place_type.pass.cpp | 107 void test_func() {} in test_func() function 111 using Type = decltype(test_func); in test_in_place_type_decayed() 113 std::any a(std::in_place_type<Type>, test_func); in test_in_place_type_decayed() 115 assert(std::any_cast<DecayT>(a) == test_func); in test_in_place_type_decayed()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | lea-opt-cse1.ll | 7 define void @test_func(ptr nocapture %ctx, i32 %n) local_unnamed_addr { 8 ; X64-LABEL: test_func: 19 ; X86-LABEL: test_func:
|
| /llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/Inputs/ |
| H A D | test-pdb-types.cpp | 45 int test_func(int a, int b) { return a + b; } in test_func() function 76 return test_func(1, 2); in main()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | llvm.amdgcn.implicit.buffer.ptr.hsa.ll | 12 ; ERROR: in function test_func{{.*}}: non-hsa intrinsic with hsa target 13 define void @test_func(i32 addrspace(1)* %out) #1 {
|
| /llvm-project-15.0.7/clang/test/Driver/ |
| H A D | clang-offload-bundler.c | 462 void test_func(void) { in test_func() function
|
| H A D | clang-offload-bundler-asserts-on.c | 33 void test_func(void) { in test_func() function
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.lib.binders/depr.lib.bind.2nd/ |
| H A D | bind2nd.depr_in_cxx11.verify.cpp | 23 std::bind2nd(test_func(1), 5); // expected-warning {{'bind2nd<test_func, int>' is deprecated}} in main()
|
| H A D | bind2nd.pass.cpp | 26 assert(std::bind2nd(test_func(1), 5)(10) == 5.); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.lib.binders/depr.lib.bind.1st/ |
| H A D | bind1st.depr_in_cxx11.verify.cpp | 23 std::bind1st(test_func(1), 5); // expected-warning {{'bind1st<test_func, int>' is deprecated}} in main()
|
| H A D | bind1st.pass.cpp | 26 assert(std::bind1st(test_func(1), 5)(10.) == -5.); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
| H A D | F_nullptr.pass.cpp | 181 void test_func() { in test_func() function 246 test_func(); in main()
|
| /llvm-project-15.0.7/clang/test/AST/ |
| H A D | ast-dump-decl-stmts.cpp | 11 void test_func() { in test_func() function
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | builtin_FUNCTION.cpp | 4 namespace test_func { namespace
|
| /llvm-project-15.0.7/flang/test/Lower/ |
| H A D | dummy-procedure.f90 | 42 test_func = prefoo(func)
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbinline.py | 204 test_func = ApplyDecoratorsToFunction(InlineTest._test, decorators) 206 test_class = type(name, (InlineTest,), dict(test=test_func,
|