/external/llvm/test/MC/COFF/ |
D | cross-section-relative.s | 16 .globl g3 # @g3 symbol 18 g3: label
|
/external/clang/test/SemaCXX/ |
D | function-pointer-arguments.cpp | 12 int(*g3)(volatile int, int) = f1; in good() local 26 int (*g3)(char, int) = f1; in bad() local
|
/external/sdv/vsomeip/third_party/boost/phoenix/test/boost_bind_compatibility/ |
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_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_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_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
|
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
|
/external/sdv/vsomeip/third_party/boost/bind/test/ |
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_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_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_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_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
|
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
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/ |
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
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/ |
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
|
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
|
/external/clang/test/Sema/ |
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
|
D | attr-weak.c | 6 int g3 __attribute__((weak_import)); // expected-warning {{'weak_import' attribute cannot be specif… variable
|
D | constant-builtins.c | 9 float g3 = __builtin_inf(); variable
|
/external/clang/test/CodeGen/ |
D | darwin-string-literals.c | 19 const void *g3 = __builtin___CFStringMakeConstantString("test™"); variable
|
/external/ltp/testcases/network/multicast/mc_member/ |
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
|
/external/ksp/test-utils/testData/api/ |
D | libOrigins.kt | 320 fun g3(q6: Set<Short>): Short = 0 in kotlinSrcFuntion() method
|
/external/clang/test/CodeGenCXX/ |
D | mangle-literal-suffix.cpp | 4 template <class T> void g3(char (&buffer)[sizeof(T() + 5.0)]) {} in g3() function
|
/external/clang/test/PCH/ |
D | chain-staticvar-instantiation.cpp | 42 int g3 = NS::TS<int, 2>::value; variable
|