Lines Matching full:uuid

47 struct __declspec(uuid(L"00000000-0000-0000-1234-000000000047")) uuid_attr_bad1 { };// expected-war…
48 struct __declspec(uuid(3)) uuid_attr_bad2 { };// expected-error {{expected string literal as argume…
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…
52 [uuid("000000000000-0000-1234-000000000047")] struct uuid_attr_bad6 { };// expected-error {{uuid at…
54 __declspec(uuid("000000A0-0000-0000-C000-000000000046")) int i; // expected-warning {{'uuid' attrib…
56 struct __declspec(uuid("000000A0-0000-0000-C000-000000000046"))
64 // Can't apply a UUID to a using declaration.
65 …[uuid("000000A0-0000-0000-C000-00000000004A")] using base::a; // expected-error {{expected member …
68 struct __declspec(uuid("000000A0-0000-0000-C000-000000000049"))
71 [uuid("000000A0-0000-0000-C000-000000000049")] struct struct_with_uuid3; // expected-warning{{speci…
76 enum __declspec(uuid("000000A0-0000-0000-C000-000000000046"))
80 int __declspec(uuid("000000A0-0000-0000-C000-000000000046")) inappropriate_uuid; // expected-warnin…
144 struct __declspec(uuid("000000A0-0000-0000-C000-000000000049")) late_defined_uuid;
151 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890aB}")) uuid;
152 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890aB}")) uuid2;
161 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890aB}")) uuid;
163 const struct _GUID *x = &__uuidof(thing<uuid, inher>);
164 const struct _GUID *y = &__uuidof(thing<uuid2, uuid>); // expected-error{{cannot call operator __uu…
165 thing<uuid2, uuid> thing_obj = thing<uuid2, uuid>();
387 struct __declspec(uuid("00000000-0000-0000-C000-000000000046")) __declspec(novtable) IUnknown {};