Lines Matching refs:__declspec

47 struct __declspec(uuid(L"00000000-0000-0000-1234-000000000047")) uuid_attr_bad1 { };// expected-err…
48 struct __declspec(uuid(3)) uuid_attr_bad2 { };// expected-error {{'uuid' attribute requires a strin…
49 struct __declspec(uuid("0000000-0000-0000-1234-0000500000047")) uuid_attr_bad3 { };// expected-erro…
50 struct __declspec(uuid("0000000-0000-0000-Z234-000000000047")) uuid_attr_bad4 { };// expected-error…
51 struct __declspec(uuid("000000000000-0000-1234-000000000047")) uuid_attr_bad5 { };// expected-error…
53 __declspec(uuid("000000A0-0000-0000-C000-000000000046")) int i; // expected-warning {{'uuid' attrib…
55 struct __declspec(uuid("000000A0-0000-0000-C000-000000000046"))
59 struct __declspec(uuid("000000A0-0000-0000-C000-000000000049"))
117 struct __declspec(uuid("000000A0-0000-0000-C000-000000000049")) late_defined_uuid;
124 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890aB}")) uuid;
125 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890aB}")) uuid2;
134 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890aB}")) uuid;
310 __declspec(property) int V0; // expected-error {{expected '(' after 'property'}}
311__declspec(property()) int V1; // expected-error {{property does not specify a getter or a putter}}
312__declspec(property(set)) int V2; // expected-error {{putter for property must be specified as 'pu…
313 __declspec(property(ptu)) int V3; // expected-error {{missing 'get=' or 'put='}}
314__declspec(property(ptu=PutV)) int V4; // expected-error {{expected 'get' or 'put' in property dec…
315 __declspec(property(get)) int V5; // expected-error {{expected '=' after 'get'}}
316 __declspec(property(get&)) int V6; // expected-error {{expected '=' after 'get'}}
317 __declspec(property(get=)) int V7; // expected-error {{expected name of accessor method}}
318 __declspec(property(get=GetV)) int V8; // no-warning
319__declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property…
320__declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property d…
321 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning
322__declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration…
323__declspec(property(get=GetV)) int V13 = 3; // expected-error {{property declaration cannot have a…
342 struct __declspec(uuid("00000000-0000-0000-C000-000000000046")) __declspec(novtable) IUnknown {};
352__declspec(property(get=foo) deprecated) int t; // expected-note {{'t' has been explicitly marked …
356 __declspec() void quux( void ) {
364 __declspec(align(16)) int *buffer = (int *)_alloca(9);
396 __declspec(align(16)) struct align_before_key1 {};
397 __declspec(align(16)) struct align_before_key2 {} align_before_key2_var;
398 __declspec(align(16)) struct align_before_key3 {} *align_before_key3_var;