/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/test/boost_bind_compatibility/ |
D | bind_test.cpp | 270 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 304 void g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function 361 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 362 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 363 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local 453 bind(&V::g3, &v, 1, 2, 3)(); in member_function_void_test() local 454 bind(&V::g3, v, 1, 2, 3)(); in member_function_void_test() local 455 bind(&V::g3, ref(v), 1, 2, 3)(); in member_function_void_test() local
|
D | bind_void_mf_test.cpp | 58 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 114 bind<void>(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 115 bind<void>(&X::g3, x, 1, 2, 3)(); in member_function_test() local 116 bind<void>(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_cdecl_mf_test.cpp | 32 int __cdecl g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 89 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 90 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 91 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_fastcall_mf_test.cpp | 52 void __fastcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function 109 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 110 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 111 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_stdcall_mf_test.cpp | 52 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 111 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 112 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 113 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_mf2_test.cpp | 50 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 107 bind(&X::g3, &x, 1, 2, 3 )(); in member_function_test() local 108 bind(&X::g3, x, 1, 2, 3 )(); in member_function_test() local 109 bind(&X::g3, ref(x), 1, 2, 3 )(); in member_function_test() local
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/bind/test/ |
D | bind_test.cpp | 245 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 279 void g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function 335 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 336 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 337 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local 425 bind(&V::g3, &v, 1, 2, 3)(); in member_function_void_test() local 426 bind(&V::g3, v, 1, 2, 3)(); in member_function_void_test() local 427 bind(&V::g3, ref(v), 1, 2, 3)(); in member_function_void_test() local
|
D | bind_fastcall_mf_test.cpp | 51 void __fastcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function 107 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 108 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 109 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_stdcall_mf_test.cpp | 51 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 107 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 108 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 109 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_cdecl_mf_test.cpp | 51 int __cdecl g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 107 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 108 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 109 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_noexcept_mf_test.cpp | 42 int g3(int a1, int a2, int a3) const noexcept { g2(a1, a2); g1(a3); return 0; } in g3() function 96 boost::bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 97 boost::bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local 98 boost::bind(&X::g3, boost::ref(x), 1, 2, 3)(); in member_function_test() local
|
D | bind_void_mf_test.cpp | 50 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function 118 bind<void>(&X::g3, &x, 1, 2, 3)(); in member_function_test() local 119 bind<void>(&X::g3, x, 1, 2, 3)(); in member_function_test() local 120 bind<void>(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkMaskBlurFilter.cpp | 465 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88&, in blur_x_radius_3() 502 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_x_radius_4() 550 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_row() 600 g3(gauss[3]), in blur_x_rect() local 720 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88&, in blur_y_radius_3() 740 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_y_radius_4() 767 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_column() 813 g3(gauss[3]), in blur_y_rect() local
|
/aosp_15_r20/external/clang/test/Sema/ |
H A D | bitfield-layout.c | 138 struct __attribute__((packed)) g3 { struct 144 CHECK_ALIGN(struct, g3, 16); argument
|
H A D | private-extern.c | 13 int g3; // expected-note{{previous definition}} variable 14 static int g3; // expected-error{{static declaration of 'g3' follows non-static declaration}} variable
|
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
D | codecapi.h | 10 # define DEFINE_CODECAPI_GUID(name, guidstr, g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11) \ argument 23 # define DEFINE_CODECAPI_GUID(name, guidstr, g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11) \ argument 28 # define DEFINE_CODECAPI_GUID(name, guidstr, g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11) DEFINE_GUIDSTRU… argument
|
/aosp_15_r20/external/llvm/test/MC/COFF/ |
H A D | cross-section-relative.s | 16 .globl g3 # @g3 symbol 18 g3: label
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | function-pointer-arguments.cpp | 12 int(*g3)(volatile int, int) = f1; in good() local 26 int (*g3)(char, int) = f1; in bad() local
|
/aosp_15_r20/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
H A D | assign.pass.cpp | 67 char g1, g2, g3, p1, p3; in main() local 75 wchar_t g1, g2, g3, p1, p3; in main() local
|
H A D | swap.pass.cpp | 76 char g1, g2, g3, p1, p3; in main() local 84 wchar_t g1, g2, g3, p1, p3; in main() local
|
/aosp_15_r20/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/ |
H A D | copy.pass.cpp | 64 char g1, g2, g3, p1, p3; in main() local 71 wchar_t g1, g2, g3, p1, p3; in main() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
H A D | assign.pass.cpp | 62 char g1, g2, g3, p1, p3; in main() local 76 wchar_t g1, g2, g3, p1, p3; in main() local
|
H A D | swap.pass.cpp | 71 char g1, g2, g3, p1, p3; in main() local 85 wchar_t g1, g2, g3, p1, p3; in main() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/stream.buffers/streambuf/streambuf.cons/ |
H A D | copy.pass.cpp | 60 char g1, g2, g3, p1, p3; in main() local 68 wchar_t g1, g2, g3, p1, p3; in main() local
|
/aosp_15_r20/external/ltp/testcases/network/multicast/mc_member/ |
H A D | mc_member_test.c | 112 unsigned g1, g2, g3, g4; in join_group() local 147 unsigned g1, g2, g3, g4; in leave_group() local
|