/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_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_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_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_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_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_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 | 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_rv_test.cpp | 39 int g0() const { g1(17); return 0; } in g0() function 90 mem_fn(&X::g0)( make() ); in main() 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
|
/third_party/mesa3d/src/intel/compiler/ |
D | test_eu_compact.cpp | 262 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local 271 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local 279 struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_D); in TEST_P() local 287 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local 304 struct brw_reg g0 = brw_vec1_grf(0, 0); in TEST_P() local 322 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local 337 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() 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_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_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_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_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
|
/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/typescript/tests/cases/fourslash/ |
D | findAllRefsDestructureGetter2.ts | 13 const [g0Def, g0, s0Def, s0, gs1Def, g1, s1] = test.ranges(); constant
|
D | findAllRefsThisKeyword.ts | 27 const [glob, f0, f1, g0, g1, x, y, constructor, method, propDefDef, propDef, propUse] = test.ranges… constant
|
D | transitiveExportImports3.ts | 13 const [f0Def, f0, f1Def, f1, g0, f2Def, f2, g1Def, g1] = test.ranges(); constant
|
/third_party/ltp/tools/sparse/sparse-src/validation/linear/ |
D | call-indirect.c | 3 int g0(int (*fun)(void)) { return (fun)(); } in g0() function
|