Lines Matching refs:__declspec
133 extern "C" __declspec(dllimport) void __stdcall CoTaskMemFree(void* pv);
190 __declspec(dllimport) void f(void) { } in f()
194 __declspec(dllimport) void AAA::f2(void) { // expected-error{{dllimport cannot be applied to non-in… in f2()
255 __declspec(property(get=GetV)) int V1;
256 __declspec(property(put=SetV)) int V2;
257 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
258 __declspec(property(get=GetV_NotExist, put=SetV)) int V4;
259 __declspec(property(get=GetV, put=SetV)) int V5;
281 __declspec(property(get=GetV)) SP1 V;
296 __declspec(property(get=GetV)) int V;
308 __declspec(property(get=GetV)) T V;
317 __declspec(property(get=GetV)) T V;
329 __declspec(property(get=GetV, put=SetV)) int V;
343 __declspec(property(get=GetV, put=SetV)) T V;
386 __declspec(property(get=GetV)) int V;
402 __declspec(property(get=GetV)) int : 10; // expected-error {{anonymous property is not supported}}
407 int __declspec(property(get = get)) n;
465 struct D {} __declspec(deprecated); in AfterClassBody()
467 struct __declspec(align(4)) S {} __declspec(align(8)) s1; in AfterClassBody()