HomeSort by relevance Sort by last modified time
    Searched refs:cdecl (Results 1 - 22 of 22) sorted by null

  /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
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}}
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) {}
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/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/CodeGenCXX/
microsoft-abi-default-cc.cpp 7 # define METHOD_CC __attribute__ ((cdecl))
2007-01-06-PtrMethodInit.cpp 36 __attribute__ ((regparm (0), cdecl)) HandleEvent (nsIDOMEvent * event) =
48 cdecl)) MouseDown (nsIDOMEvent * aMouseEvent) = 0;
  /external/clang/test/SemaCXX/
virtual-override-x64.cpp 14 void __attribute__((cdecl)) f();
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))'}}
  /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
ittnotify_config.h 114 #ifndef CDECL
116 # define CDECL __cdecl
119 # define CDECL /* not actual on x86_64 platform */
121 # define CDECL __attribute__ ((cdecl))
124 #endif /* CDECL */
138 #define ITTAPI CDECL
139 #define LIBITTAPI CDECL
142 #define ITTAPI_CALL CDECL
143 #define LIBITTAPI_CALL CDECL
    [all...]
  /external/clang/test/Misc/
ast-dump-attr.cpp 120 int __attribute__((cdecl)) TestOne(void), TestTwo(void);
121 // CHECK: FunctionDecl{{.*}}TestOne{{.*}}__attribute__((cdecl))
122 // CHECK: FunctionDecl{{.*}}TestTwo{{.*}}__attribute__((cdecl))
  /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/ltrace/testsuite/lib/
ltrace.exp 690 # cdecl Contents of header file.
702 proc ltraceLibTest {conf cdecl libcode maincode {params ""}} {
704 set lib [ltraceCompile liblib.so [ltraceSource c [concat $cdecl $libcode]]]
707 [concat $cdecl "int main(void) {" $maincode "}"]]]
  /external/chromium_org/v8/test/cctest/compiler/
call-tester.h 14 #define V8_CDECL __attribute__((cdecl))
  /external/bison/
configure     [all...]

Completed in 5739 milliseconds