Lines Matching refs:__uuidof

36   __uuidof(0);  in uuidof_test1()
79 __uuidof(struct_with_uuid); in uuid_sema_test()
80 __uuidof(struct_with_uuid2); in uuid_sema_test()
81 __uuidof(struct_with_uuid3); in uuid_sema_test()
82__uuidof(struct_without_uuid); // expected-error {{cannot call operator __uuidof on a type with no… in uuid_sema_test()
83 __uuidof(struct_with_uuid*); in uuid_sema_test()
84__uuidof(struct_without_uuid*); // expected-error {{cannot call operator __uuidof on a type with n… in uuid_sema_test()
85 __uuidof(struct_with_uuid[1]); in uuid_sema_test()
86__uuidof(struct_with_uuid*[1]); // expected-error {{cannot call operator __uuidof on a type with n… in uuid_sema_test()
87 __uuidof(const struct_with_uuid[1][1]); in uuid_sema_test()
88__uuidof(const struct_with_uuid*[1][1]); // expected-error {{cannot call operator __uuidof on a ty… in uuid_sema_test()
90 __uuidof(enum_with_uuid); in uuid_sema_test()
91__uuidof(enum_without_uuid); // expected-error {{cannot call operator __uuidof on a type with no G… in uuid_sema_test()
92 __uuidof(enum_with_uuid*); in uuid_sema_test()
93__uuidof(enum_without_uuid*); // expected-error {{cannot call operator __uuidof on a type with no … in uuid_sema_test()
94 __uuidof(enum_with_uuid[1]); in uuid_sema_test()
95__uuidof(enum_with_uuid*[1]); // expected-error {{cannot call operator __uuidof on a type with no … in uuid_sema_test()
96 __uuidof(const enum_with_uuid[1][1]); in uuid_sema_test()
97__uuidof(const enum_with_uuid*[1][1]); // expected-error {{cannot call operator __uuidof on a type… in uuid_sema_test()
99 __uuidof(var_with_uuid); in uuid_sema_test()
100__uuidof(var_without_uuid);// expected-error {{cannot call operator __uuidof on a type with no GUI… in uuid_sema_test()
101 __uuidof(var_with_uuid[1]); in uuid_sema_test()
102__uuidof(var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no … in uuid_sema_test()
103 __uuidof(&var_with_uuid[1]); in uuid_sema_test()
104__uuidof(&var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no… in uuid_sema_test()
106 __uuidof(0); in uuid_sema_test()
107 __uuidof(1);// expected-error {{cannot call operator __uuidof on a type with no GUID}} in uuid_sema_test()
116 __uuidof(T); in template_uuid()
117 __uuidof(expr); in template_uuid()
121 template <class T, const GUID* g = &__uuidof(T)> // expected-note {{template parameter is declared …
124 typedef COM_CLASS_TEMPLATE<struct_with_uuid, &*&__uuidof(struct_with_uuid)> COM_TYPE_1; // expected…
129 typedef COM_CLASS_TEMPLATE_REF<struct_with_uuid, __uuidof(struct_with_uuid)> COM_TYPE_REF;
134 __uuidof(late_defined_uuid); in test_late_defined_uuid()
138 COM_CLASS_TEMPLATE_REF<int, __uuidof(struct_with_uuid)> good_template_arg;
140 COM_CLASS_TEMPLATE<int, __uuidof(struct_with_uuid)> bad_template_arg; // expected-error {{non-type …
154 const struct _GUID *w = &__uuidof(inher); // expected-error{{cannot call operator __uuidof on a typ…
155 const struct _GUID *x = &__uuidof(thing<uuid, inher>);
156 const struct _GUID *y = &__uuidof(thing<uuid2, uuid>); // expected-error{{cannot call operator __uu…
158 const struct _GUID *z = &__uuidof(thing_obj); // expected-error{{cannot call operator __uuidof on a…