| /third_party/boost/libs/bind/test/ |
| D | mem_fn_test.cpp | 41 int g0() const { g1(17); return 0; } in g0() function 97 mem_fn(&X::g0)(x); in main() local 98 mem_fn(&X::g0)(rcx); in main() local 100 mem_fn(&X::g0)(pcx); in main() local 101 mem_fn(&X::g0)(sp); in main() local
|
| D | mem_fn_void_test.cpp | 41 void g0() const { g1(17); } in g0() function 97 mem_fn(&X::g0)(x); in main() local 98 mem_fn(&X::g0)(rcx); in main() local 100 mem_fn(&X::g0)(pcx); in main() local 101 mem_fn(&X::g0)(sp); in main() local
|
| D | mem_fn_derived_test.cpp | 41 int g0() const { g1(17); return 0; } in g0() function 101 mem_fn(&X::g0)(x); in main() local 102 mem_fn(&X::g0)(rcx); in main() local 104 mem_fn(&X::g0)(pcx); in main() local 105 mem_fn(&X::g0)(sp); in main() local
|
| D | mem_fn_noexcept_test.cpp | 24 int g0() const noexcept { g1(17); return 0; } in g0() function 80 mem_fn(&X::g0)(x); in main() local 81 mem_fn(&X::g0)(rcx); in main() local 83 mem_fn(&X::g0)(pcx); in main() local 84 mem_fn(&X::g0)(sp); in main() local
|
| D | mem_fn_cdecl_test.cpp | 51 int __cdecl g0() const { g1(17); return 0; } in g0() function 107 mem_fn(&X::g0)(x); in main() local 108 mem_fn(&X::g0)(rcx); in main() local 110 mem_fn(&X::g0)(pcx); in main() local 111 mem_fn(&X::g0)(sp); in main() local
|
| D | mem_fn_stdcall_test.cpp | 51 int __stdcall g0() const { g1(17); return 0; } in g0() function 107 mem_fn(&X::g0)(x); in main() local 108 mem_fn(&X::g0)(rcx); in main() local 110 mem_fn(&X::g0)(pcx); in main() local 111 mem_fn(&X::g0)(sp); in main() local
|
| D | mem_fn_fastcall_test.cpp | 51 void __fastcall g0() const { g1(17); } in g0() function 107 mem_fn(&X::g0)(x); in main() local 108 mem_fn(&X::g0)(rcx); in main() local 110 mem_fn(&X::g0)(pcx); in main() local 111 mem_fn(&X::g0)(sp); in main() local
|
| D | bind_stdcall_mf_test.cpp | 42 int __stdcall g0() const { g1(17); return 0; } in g0() function 80 bind(&X::g0, &x)(); in member_function_test() local 81 bind(&X::g0, x)(); in member_function_test() local 82 bind(&X::g0, ref(x))(); in member_function_test() local
|
| D | bind_noexcept_mf_test.cpp | 33 int g0() const noexcept { g1(17); return 0; } in g0() function 69 boost::bind(&X::g0, &x)(); in member_function_test() local 70 boost::bind(&X::g0, x)(); in member_function_test() local 71 boost::bind(&X::g0, boost::ref(x))(); in member_function_test() local
|
| D | bind_cdecl_mf_test.cpp | 42 int __cdecl g0() const { g1(17); return 0; } in g0() function 80 bind(&X::g0, &x)(); in member_function_test() local 81 bind(&X::g0, x)(); in member_function_test() local 82 bind(&X::g0, ref(x))(); in member_function_test() local
|
| D | mem_fn_rv_test.cpp | 39 int g0() const { g1(17); return 0; } in g0() function 90 mem_fn(&X::g0)( make() ); in main() local
|
| D | bind_void_mf_test.cpp | 38 int g0() const { g1(17); return 0; } in g0() function 85 bind<void>(&X::g0, &x)(); in member_function_test() local 86 bind<void>(&X::g0, x)(); in member_function_test() local 87 bind<void>(&X::g0, ref(x))(); in member_function_test() local
|
| D | mem_fn_unary_addr_test.cpp | 38 int g0() const { g1(17); return 0; } in g0() function 124 mem_fn(&X::g0)( pcx ); in main() local
|
| D | bind_test.cpp | 236 int g0() const { g1(17); return 0; } in g0() function 270 void g0() const { g1(17); } in g0() function 308 bind(&X::g0, &x)(); in member_function_test() local 309 bind(&X::g0, x)(); in member_function_test() local 310 bind(&X::g0, ref(x))(); in member_function_test() local 398 bind(&V::g0, &v)(); in member_function_void_test() local 399 bind(&V::g0, v)(); in member_function_void_test() local 400 bind(&V::g0, ref(v))(); in member_function_void_test() local
|
| /third_party/boost/libs/mpl/test/ |
| D | apply_wrap.cpp | 72 struct g0 { struct apply { typedef char type; }; }; argument
|
| /third_party/boost/libs/phoenix/test/boost_bind_compatibility/ |
| D | bind_void_mf_test.cpp | 49 int g0() const { g1(17); return 0; } in g0() function 87 bind<void>(&X::g0, &x)(); in member_function_test() local 88 bind<void>(&X::g0, x)(); in member_function_test() local 89 bind<void>(&X::g0, ref(x))(); in member_function_test() local
|
| D | bind_cdecl_mf_test.cpp | 23 int __cdecl g0() const { g1(17); return 0; } in g0() function 62 bind(&X::g0, &x)(); in member_function_test() local 63 bind(&X::g0, x)(); in member_function_test() local 64 bind(&X::g0, ref(x))(); in member_function_test() local
|
| D | bind_fastcall_mf_test.cpp | 43 void __fastcall g0() const { g1(17); } in g0() function 82 bind(&X::g0, &x)(); in member_function_test() local 83 bind(&X::g0, x)(); in member_function_test() local 84 bind(&X::g0, ref(x))(); in member_function_test() local
|
| D | bind_mf2_test.cpp | 41 int g0() const { g1(17); return 0; } in g0() function 80 bind(&X::g0, &x )(); in member_function_test() local 81 bind(&X::g0, x )(); in member_function_test() local 82 bind(&X::g0, ref(x) )(); in member_function_test() local
|
| D | bind_stdcall_mf_test.cpp | 43 int __stdcall g0() const { g1(17); return 0; } in g0() function 84 bind(&X::g0, &x)(); in member_function_test() local 85 bind(&X::g0, x)(); in member_function_test() local 86 bind(&X::g0, ref(x))(); in member_function_test() local
|
| D | bind_test.cpp | 261 int g0() const { g1(17); return 0; } in g0() function 295 void g0() const { g1(17); } in g0() function 334 bind(&X::g0, &x)(); in member_function_test() local 335 bind(&X::g0, x)(); in member_function_test() local 336 bind(&X::g0, ref(x))(); in member_function_test() local 426 bind(&V::g0, &v)(); in member_function_void_test() local 427 bind(&V::g0, v)(); in member_function_void_test() local 428 bind(&V::g0, ref(v))(); in member_function_void_test() local
|
| /third_party/boost/libs/optional/test/ |
| D | optional_test_inplace_factory.cpp | 46 Guard g0, g1(1.0, "one"), g2(2.0, "two"); in test_ctor() local 77 Guard g0, g1(1.0, "one"), g2(2.0, "two"); in test_assign() local
|
| /third_party/flutter/skia/src/core/ |
| D | SkMaskBlurFilter.cpp | 411 const Sk8h& g0, const Sk8h& g1, const Sk8h&, const Sk8h&, const Sk8h&, in blur_x_radius_1() 432 const Sk8h& g0, const Sk8h& g1, const Sk8h& g2, const Sk8h&, const Sk8h&, in blur_x_radius_2() 549 const Sk8h& g0, const Sk8h& g1, const Sk8h& g2, const Sk8h& g3, const Sk8h& g4, in blur_row() 596 Sk8h g0{gauss[0]}, in blur_x_rect() local 688 const Sk8h& g0, const Sk8h& g1, const Sk8h&, const Sk8h&, const Sk8h&, in blur_y_radius_1() 702 const Sk8h& g0, const Sk8h& g1, const Sk8h& g2, const Sk8h&, const Sk8h&, in blur_y_radius_2() 719 const Sk8h& g0, const Sk8h& g1, const Sk8h& g2, const Sk8h& g3, const Sk8h&, in blur_y_radius_3() 739 const Sk8h& g0, const Sk8h& g1, const Sk8h& g2, const Sk8h& g3, const Sk8h& g4, in blur_y_radius_4() 766 const Sk8h& g0, const Sk8h& g1, const Sk8h& g2, const Sk8h& g3, const Sk8h& g4, in blur_column() 809 Sk8h g0{gauss[0]}, in blur_y_rect() local
|
| /third_party/ffmpeg/libavcodec/ |
| D | opusdsp.c | 23 const float g0 = gains[0]; in postfilter_c() local
|
| /third_party/boost/libs/hof/test/ |
| D | lazy.cpp | 155 int g0() const { g1(17); return 0; } in g0() function 189 void g0() const { g1(17); } in g0() function 227 boost::hof::lazy(&X::g0)(x)(); in BOOST_HOF_TEST_CASE() local 228 boost::hof::lazy(&X::g0)(std::ref(x))(); in BOOST_HOF_TEST_CASE() local 315 boost::hof::lazy(&V::g0)(v)(); in BOOST_HOF_TEST_CASE() local 316 boost::hof::lazy(&V::g0)(std::ref(v))(); in BOOST_HOF_TEST_CASE() local
|