Lines Matching full:__stdcall
11 void __stdcall free_func_stdcall(); // expected-note 2 {{previous declaration is here}}
15 void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
19 void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previously declared 'cdecl'}}
27 void __stdcall free_func_fastcall(); // expected-error {{function declared 'stdcall' here was previously declared 'fastcall'}}
53 void_fun_t __stdcall member_typedef_stdcall;
61 static void __stdcall static_member_stdcall1();
62 static void __stdcall static_member_stdcall2();
78 void __stdcall S::member_typedef_stdcall() {}
88 void __stdcall S::static_member_default3() {} // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
91 void __stdcall S::static_member_cdecl2() {} // expected-error {{function declared 'stdcall' here was previously declared 'cdecl'}}
116 static void __stdcall overloaded(short a);
128 void __stdcall friend_stdcall1() {}
134 friend void __stdcall friend_stdcall2();
138 void __stdcall friend_stdcall3() {} // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
139 void __stdcall friend_stdcall2() {}
142 void __attribute__((noreturn)) __stdcall __attribute__((regparm(1))) multi_attribute(int x);
148 void __cdecl __cdecl __stdcall __cdecl __fastcall multi_cc(int x);
150 template <typename T> void __stdcall StdcallTemplate(T) {}
152 template <> void __stdcall StdcallTemplate<short>(short) {}