• Home
  • Raw
  • Download

Lines Matching refs:__stdcall

11 void __stdcall  free_func_stdcall(); // expected-note 2 {{previous declaration is here}}
16 void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previ…
20 void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previou…
28 void __stdcall free_func_fastcall(); // expected-error {{function declared 'stdcall' here was prev…
32 void __stdcall free_func_vectorcall(); // expected-error {{function declared 'stdcall' here was pr…
60 void_fun_t __stdcall member_typedef_stdcall;
68 static void __stdcall static_member_stdcall1();
69 static void __stdcall static_member_stdcall2();
90 void __stdcall S::member_typedef_stdcall() {} in member_typedef_stdcall()
103 void __stdcall S::static_member_default3() {} // expected-error {{function declared 'stdcall' here… in static_member_default3()
106 void __stdcall S::static_member_cdecl2() {} // expected-error {{function declared 'stdcall' here w… in static_member_cdecl2()
131 static void __stdcall overloaded(short a);
143 void __stdcall friend_stdcall1() {} in friend_stdcall1()
149 friend void __stdcall friend_stdcall2();
153 void __stdcall friend_stdcall3() {} // expected-error {{function declared 'stdcall' here was previo… in friend_stdcall3()
154 void __stdcall friend_stdcall2() {} in friend_stdcall2()
157 void __attribute__((noreturn)) __stdcall __attribute__((regparm(1))) multi_attribute(int x);
164 void __cdecl __cdecl __stdcall __cdecl __fastcall __vectorcall multi_cc(int x);
166 template <typename T> void __stdcall StdcallTemplate(T) {} in StdcallTemplate()
168 template <> void __stdcall StdcallTemplate<short>(short) {} in StdcallTemplate()