Lines Matching full:__declspec
6 struct __declspec(uuid("00000000-0000-0000-C000-000000000046")) __declspec(novtable) IUnknown {}; /* expected-warning{{__declspec attribute 'novtable' is not supported}} */
7 extern __declspec(dllimport) void __stdcall VarR4FromDec();
8 __declspec(deprecated) __declspec(deprecated) char * __cdecl ltoa( long _Val, char * _DstBuf, int _Radix);
9 __declspec(safebuffers) __declspec(noalias) __declspec(restrict) void * __cdecl xxx( void * _Memory ); /* expected-warning{{__declspec attribute 'safebuffers' is not supported}} expected-warning{{__declspec attribute 'noalias' is not supported}} expected-warning{{__declspec attribute 'restrict' is not supported}} */
43 __declspec(align(16)) int *buffer = (int *)_alloca(9);
60 enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{declared here}}
61 __declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{declared here}}
87 struct __declspec(frobble) S1 {}; /* expected-warning {{unknown __declspec attribute 'frobble' ignored}} */
88 struct __declspec(12) S2 {}; /* expected-error {{__declspec attributes must be an identifier or string literal}} */
89 struct __declspec("testing") S3 {}; /* expected-warning {{__declspec attribute '"testing"' is not supported}} */
92 struct __declspec(align(8) deprecated) S4 {};
95 struct __declspec(deprecated frobble "testing") S5 {}; /* expected-warning {{unknown __declspec attribute 'frobble' ignored}} expected-warning {{__declspec attribute '"testing"' is not supported}} */
96 struct __declspec(unknown(12) deprecated) S6 {}; /* expected-warning {{unknown __declspec attribute 'unknown' ignored}}*/
100 __declspec(property(get=foo) deprecated) int t; // expected-note {{declared here}}
104 __declspec() void quux( void ) {