• Home
  • Raw
  • Download

Lines Matching full:here

9 void            free_func_default(); // expected-note 2 {{previous declaration is here}}
10 void __cdecl free_func_cdecl(); // expected-note 2 {{previous declaration is here}}
11 void __stdcall free_func_stdcall(); // expected-note 2 {{previous declaration is here}}
12 void __fastcall free_func_fastcall(); // expected-note 2 {{previous declaration is here}}
13 void __vectorcall free_func_vectorcall(); // expected-note 2 {{previous declaration is here}}
16 void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previ…
17 void __fastcall free_func_default(); // expected-error {{function declared 'fastcall' here was prev…
20 void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previou…
21 void __fastcall free_func_cdecl(); // expected-error {{function declared 'fastcall' here was previo…
24 void __cdecl free_func_stdcall(); // expected-error {{function declared 'cdecl' here was previou…
25 void __fastcall free_func_stdcall(); // expected-error {{function declared 'fastcall' here was prev…
27 void __cdecl free_func_fastcall(); // expected-error {{function declared 'cdecl' here was previo…
28 void __stdcall free_func_fastcall(); // expected-error {{function declared 'stdcall' here was prev…
31 void __cdecl free_func_vectorcall(); // expected-error {{function declared 'cdecl' here was prev…
32 void __stdcall free_func_vectorcall(); // expected-error {{function declared 'stdcall' here was pr…
47 void member_default1(); // expected-note {{previous declaration is here}}
50 void __cdecl member_cdecl2(); // expected-note {{previous declaration is here}}
52 void __thiscall member_thiscall2(); // expected-note {{previous declaration is here}}
54 void __vectorcall member_vectorcall2(); // expected-note {{previous declaration is here}}
57 void_fun_t member_typedef_default; // expected-note {{previous declaration is here}}
58 cdecl_fun_t member_typedef_cdecl1; // expected-note {{previous declaration is here}}
65 static void static_member_default3(); // expected-note {{previous declaration is here}}
67 static void __cdecl static_member_cdecl2(); // expected-note {{previous declaration is here}}
84 void __cdecl S::member_default1() {} // expected-error {{function declared 'cdecl' here was prev… in member_default1()
87 void __cdecl S::member_typedef_default() {} // expected-error {{function declared 'cdecl' here wa… in member_typedef_default()
88 void __cdecl S::member_typedef_cdecl1() {} // expected-error {{function declared 'cdecl' here was… in member_typedef_cdecl1()
93 void __thiscall S::member_cdecl2() {} // expected-error {{function declared 'thiscall' here was pre… in member_cdecl2()
96 void __cdecl S::member_thiscall2() {} // expected-error {{function declared 'cdecl' here was pre… in member_thiscall2()
99 void __cdecl S::member_vectorcall2() {} // expected-error {{function declared 'cdecl' here was p… in member_vectorcall2()
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()
150 friend void friend_stdcall3(); // expected-note {{previous declaration is here}}
153 void __stdcall friend_stdcall3() {} // expected-error {{function declared 'stdcall' here was previo… in friend_stdcall3()
171 // expected-error@+2 {{function declared 'cdecl' here was previously declared 'stdcall}}
172 // expected-note@+1 {{previous declaration is here}}
241 void f(T t) { // expected-note {{previous declaration is here}} in f()
245 …template<> void __cdecl S<void*>::f(void*); // expected-error {{function declared 'cdecl' here was…
247 …f(p); // expected-note {{in instantiation of member function 'test8::S<void *>::f' requested here}} in g()