Home
last modified time | relevance | path

Searched defs:g3 (Results 1 – 25 of 136) sorted by relevance

123456

/external/llvm/test/MC/COFF/
Dcross-section-relative.s16 .globl g3 # @g3 symbol
18 g3: label
/external/clang/test/SemaCXX/
Dfunction-pointer-arguments.cpp12 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/
Dbind_void_mf_test.cpp58 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
Dbind_fastcall_mf_test.cpp52 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
Dbind_stdcall_mf_test.cpp52 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
Dbind_cdecl_mf_test.cpp32 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
Dbind_mf2_test.cpp50 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
Dbind_test.cpp270 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/
Dbind_stdcall_mf_test.cpp51 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
Dbind_noexcept_mf_test.cpp42 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
Dbind_cdecl_mf_test.cpp51 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
Dbind_fastcall_mf_test.cpp51 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
Dbind_void_mf_test.cpp50 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
Dbind_test.cpp245 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/
Dcopy.pass.cpp64 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/
Dassign.pass.cpp67 char g1, g2, g3, p1, p3; in main() local
75 wchar_t g1, g2, g3, p1, p3; in main() local
Dswap.pass.cpp76 char g1, g2, g3, p1, p3; in main() local
84 wchar_t g1, g2, g3, p1, p3; in main() local
/external/clang/test/Sema/
Dprivate-extern.c13 int g3; // expected-note{{previous definition}} variable
14 static int g3; // expected-error{{static declaration of 'g3' follows non-static declaration}} variable
Dattr-weak.c6 int g3 __attribute__((weak_import)); // expected-warning {{'weak_import' attribute cannot be specif… variable
Dconstant-builtins.c9 float g3 = __builtin_inf(); variable
/external/clang/test/CodeGen/
Ddarwin-string-literals.c19 const void *g3 = __builtin___CFStringMakeConstantString("test™"); variable
/external/ltp/testcases/network/multicast/mc_member/
Dmc_member_test.c112 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/
DlibOrigins.kt320 fun g3(q6: Set<Short>): Short = 0 in kotlinSrcFuntion() method
/external/clang/test/CodeGenCXX/
Dmangle-literal-suffix.cpp4 template <class T> void g3(char (&buffer)[sizeof(T() + 5.0)]) {} in g3() function
/external/clang/test/PCH/
Dchain-staticvar-instantiation.cpp42 int g3 = NS::TS<int, 2>::value; variable

123456