OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cdecl
(Results
1 - 25
of
258
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/clang/test/Sema/
ms_abi-sysv_abi.c
8
// FIXME: Should say 'sysv_abi' instead of '
cdecl
'
9
void __attribute__((ms_abi, sysv_abi)) foo3(void); // expected-error{{
cdecl
and ms_abi attributes are not compatible}}
11
void __attribute__((sysv_abi)) foo4(void); // expected-error{{function declared '
cdecl
' here was previously declared 'ms_abi'}}
13
void bar(int i, int j) __attribute__((ms_abi,
cdecl
)); // expected-error{{
cdecl
and ms_abi attributes are not compatible}}
14
void bar2(int i, int j) __attribute__((sysv_abi,
cdecl
)); // no-error
MicrosoftCompatibility-x86.c
4
int __cdecl f(void) { /* expected-error {{function declared '
cdecl
' here was previously declared 'stdcall'}} */
stdcall-fastcall.c
13
void rdar8876096foo1(int i, int j) __attribute__((fastcall,
cdecl
)); // expected-error {{not compatible}}
16
void rdar8876096foo4(int i, int j) __attribute__((stdcall,
cdecl
)); // expected-error {{not compatible}}
18
void rdar8876096foo6(int i, int j) __attribute__((
cdecl
, fastcall)); // expected-error {{not compatible}}
19
void rdar8876096foo7(int i, int j) __attribute__((
cdecl
, stdcall)); // expected-error {{not compatible}}
callingconv.c
26
void __attribute__((
cdecl
)) ctest0() {}
28
void __attribute__((
cdecl
(1))) ctest1(float x) {} // expected-error {{'
cdecl
' attribute takes no arguments}}
34
void (__attribute__((
cdecl
)) *ptest1)(void) = test1; // expected-warning {{incompatible pointer types}}
39
void (__attribute__((
cdecl
)) *pctest2)() = ctest2;
56
void __attribute__((
cdecl
)) ctest3() {}
60
PROC __attribute__((
cdecl
)) ctest4(const char *x) {}
stdcall-fastcall-x64.c
13
void rdar8876096foo1(int i, int j) __attribute__((fastcall,
cdecl
)); // expected-warning{{calling convention 'fastcall' ignored for this target}}
16
void rdar8876096foo4(int i, int j) __attribute__((stdcall,
cdecl
)); // expected-warning{{calling convention 'stdcall' ignored for this target}}
18
void rdar8876096foo6(int i, int j) __attribute__((
cdecl
, fastcall)); // expected-warning {{calling convention 'fastcall' ignored for this target}}
19
void rdar8876096foo7(int i, int j) __attribute__((
cdecl
, stdcall)); // expected-warning{{calling convention 'stdcall' ignored for this target}}
mrtd.c
21
// expected-error@+3 {{redefinition of 'a' with a different type: 'void ((*))(int, int) __attribute__((
cdecl
))' vs 'void (*)(int, int) __attribute__((stdcall))'}}
24
__attribute__((
cdecl
)) extern void (*a)(int, int);
27
__attribute__((
cdecl
)) extern void (*b)(int, ...);
attr-args.c
6
inline __attribute__((
cdecl
(a))) void *f3(); // expected-error {{'
cdecl
' attribute takes no arguments}}
/external/chromium_org/base/debug/
dump_without_crashing.cc
13
void (
CDECL
*dump_without_crashing_function_)() = NULL;
26
void SetDumpWithoutCrashingFunction(void (
CDECL
*function)()) {
dump_without_crashing.h
24
BASE_EXPORT void SetDumpWithoutCrashingFunction(void (
CDECL
*function)());
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ksguid.h
18
#define DEFINE_GUIDEX(name) EXTERN_C const
CDECL
GUID DECLSPEC_SELECTANY name = { STATICGUIDOF(name) }
20
#define DEFINE_GUIDEX(name) const
CDECL
GUID DECLSPEC_SELECTANY name = { STATICGUIDOF(name) }
wownt16.h
17
DWORD
CDECL
CallProcEx32W(DWORD,DWORD,DWORD,...);
/external/clang/test/Parser/
arm-windows-calling-convention-handling.c
3
int __cdecl
cdecl
(int a, int b, int c, int d) { // expected-warning {{calling convention '__cdecl' ignored for this target}}
function
/external/clang/test/SemaCXX/
decl-microsoft-call-conv.cpp
19
void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previously declared '
cdecl
'}}
20
void __fastcall free_func_cdecl(); // expected-error {{function declared 'fastcall' here was previously declared '
cdecl
'}}
23
void __cdecl free_func_stdcall(); // expected-error {{function declared '
cdecl
' here was previously declared 'stdcall'}}
26
void __cdecl free_func_fastcall(); // expected-error {{function declared '
cdecl
' here was previously declared 'fastcall'}}
72
void __cdecl S::member_default1() {} // expected-error {{function declared '
cdecl
' here was previously declared without calling convention}}
75
void __cdecl S::member_typedef_default() {} // expected-error {{function declared '
cdecl
' here was previously declared without calling convention}}
76
void __cdecl S::member_typedef_cdecl1() {} // expected-error {{function declared '
cdecl
' here was previously declared without calling convention}}
81
void __thiscall S::member_cdecl2() {} // expected-error {{function declared 'thiscall' here was previously declared '
cdecl
'}}
84
void __cdecl S::member_thiscall2() {} // expected-error {{function declared '
cdecl
' here was previously declared 'thiscall'}}
91
void __stdcall S::static_member_cdecl2() {} // expected-error {{function declared 'stdcall' here was previously declared '
cdecl
'}}
[
all
...]
virtual-override-x86.cpp
11
void __attribute__((
cdecl
)) f(); // expected-error{{virtual function 'f' has different calling convention attributes ('void () __attribute__((
cdecl
))') than the function it overrides (which has calling convention 'void () __attribute__((thiscall))'}}
calling-conv-compat.cpp
25
// expected-note@+2 {{candidate function not viable: no known conversion from 'void () __attribute__((
cdecl
))' to 'fptr_stdcall' (aka 'void (*)() __attribute__((stdcall))') for 1st argument}}
29
// expected-note@+2 {{candidate function not viable: no known conversion from 'void () __attribute__((
cdecl
))' to 'fptr_fastcall' (aka 'void (*)() __attribute__((fastcall))') for 1st argument}}
108
// expected-note@+2 {{candidate function not viable: no known conversion from 'void () __attribute__((
cdecl
))' to 'fref_stdcall' (aka 'void (&)() __attribute__((stdcall))') for 1st argument}}
112
// expected-note@+2 {{candidate function not viable: no known conversion from 'void () __attribute__((
cdecl
))' to 'fref_fastcall' (aka 'void (&)() __attribute__((fastcall))') for 1st argument}}
182
// expected-note@+1 {{candidate function not viable: no known conversion from 'void (NonVariadic::A::*)() __attribute__((
cdecl
))' to 'memb_a_default' (aka 'void (NonVariadic::A::*)() __attribute__((thiscall))') for 1st argument}}
184
// expected-note@+2 {{candidate function not viable: no known conversion from 'void (NonVariadic::A::*)() __attribute__((thiscall))' to 'memb_a_cdecl' (aka 'void (NonVariadic::A::*)() __attribute__((
cdecl
))') for 1st argument}}
185
// expected-note@+1 {{candidate function not viable: no known conversion from 'void (NonVariadic::A::*)() __attribute__((thiscall))' to 'memb_a_cdecl' (aka 'void (NonVariadic::A::*)() __attribute__((
cdecl
))') for 1st argument}}
187
// expected-note@+1 {{candidate function not viable: no known conversion from 'void (NonVariadic::A::*)() __attribute__((
cdecl
))' to 'memb_a_thiscall' (aka 'void (NonVariadic::A::*)() __attribute__((thiscall))') for 1st argument}}
189
// expected-note@+1 {{candidate function not viable: no known conversion from 'void (NonVariadic::A::*)() __attribute__((
cdecl
))' to 'memb_b_default' (aka 'void (NonVariadic::B::*)() __attribute__((thiscall))') for 1st argument}}
191
// expected-note@+2 {{candidate function not viable: no known conversion from 'void (NonVariadic::A::*)() __attribute__((thiscall))' to 'memb_b_cdecl' (aka 'void (NonVariadic::B::*)() __attribute__((
cdecl
))') for 1st argument}
[
all
...]
virtual-override-x64.cpp
14
void __attribute__((
cdecl
)) f();
/external/chromium_org/remoting/client/plugin/
pepper_plugin_thread_delegate.h
22
base::TimeDelta delay, void(
CDECL
function)(void*), void* data) OVERRIDE;
pepper_plugin_thread_delegate.cc
19
base::TimeDelta delay, void(
CDECL
function)(void*), void* data) {
/external/clang/test/CodeGenCXX/
2007-01-06-PtrMethodInit.cpp
36
__attribute__ ((regparm (0),
cdecl
)) HandleEvent (nsIDOMEvent * event) =
48
cdecl
)) MouseDown (nsIDOMEvent * aMouseEvent) = 0;
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.h
224
#ifndef
CDECL
226
# define
CDECL
__cdecl
229
# define
CDECL
/* not actual on x86_64 platform */
231
# define
CDECL
__attribute__ ((
cdecl
))
234
#endif /*
CDECL
*/
236
#define JITAPI
CDECL
ittnotify_config.h
75
#ifndef
CDECL
77
# define
CDECL
__cdecl
80
# define
CDECL
/* not actual on x86_64 platform */
82
# define
CDECL
__attribute__ ((
cdecl
))
85
#endif /*
CDECL
*/
99
#define ITTAPI
CDECL
100
#define LIBITTAPI
CDECL
103
#define ITTAPI_CALL
CDECL
104
#define LIBITTAPI_CALL
CDECL
[
all
...]
/external/bison/lib/
msvc-inval.c
31
static void
cdecl
48
static void
cdecl
97
static void
cdecl
/external/chromium_org/third_party/expat/files/lib/
expat_external.h
21
"library boundary." This will default to
cdecl
, and
33
compiled with the
cdecl
calling convention as the default since
34
system headers may assume the
cdecl
convention.
40
#define XMLCALL __attribute__((
cdecl
))
/external/expat/lib/
expat_external.h
21
"library boundary." This will default to
cdecl
, and
33
compiled with the
cdecl
calling convention as the default since
34
system headers may assume the
cdecl
convention.
40
#define XMLCALL __attribute__((
cdecl
))
/external/chromium_org/v8/src/third_party/vtune/
jitprofiling.h
263
#ifndef
CDECL
265
# define
CDECL
__cdecl
268
# define
CDECL
/* not actual on x86_64 platform */
270
# define
CDECL
__attribute__ ((
cdecl
))
273
#endif /*
CDECL
*/
275
#define JITAPI
CDECL
Completed in 43 milliseconds
1
2
3
4
5
6
7
8
9
10
11