Home
last modified time | relevance | path

Searched defs:g0 (Results 1 – 25 of 59) sorted by relevance

123

/third_party/boost/libs/bind/test/
Dmem_fn_test.cpp41 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
Dmem_fn_void_test.cpp41 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
Dmem_fn_derived_test.cpp41 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
Dmem_fn_noexcept_test.cpp24 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
Dmem_fn_cdecl_test.cpp51 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
Dmem_fn_stdcall_test.cpp51 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
Dmem_fn_fastcall_test.cpp51 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
Dbind_stdcall_mf_test.cpp42 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
Dbind_noexcept_mf_test.cpp33 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
Dbind_cdecl_mf_test.cpp42 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
Dmem_fn_rv_test.cpp39 int g0() const { g1(17); return 0; } in g0() function
90 mem_fn(&X::g0)( make() ); in main() local
Dbind_void_mf_test.cpp38 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
Dmem_fn_unary_addr_test.cpp38 int g0() const { g1(17); return 0; } in g0() function
124 mem_fn(&X::g0)( pcx ); in main() local
Dbind_test.cpp236 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/
Dapply_wrap.cpp72 struct g0 { struct apply { typedef char type; }; }; argument
/third_party/boost/libs/phoenix/test/boost_bind_compatibility/
Dbind_void_mf_test.cpp49 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
Dbind_cdecl_mf_test.cpp23 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
Dbind_fastcall_mf_test.cpp43 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
Dbind_mf2_test.cpp41 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
Dbind_stdcall_mf_test.cpp43 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
Dbind_test.cpp261 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/
Doptional_test_inplace_factory.cpp46 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/
DSkMaskBlurFilter.cpp411 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/
Dopusdsp.c23 const float g0 = gains[0]; in postfilter_c() local
/third_party/boost/libs/hof/test/
Dlazy.cpp155 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

123