Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:GetV

255   __declspec(property(get=GetV)) int V1;
257 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
259 __declspec(property(get=GetV, put=SetV)) int V5;
261 int GetV() { return 123; }
281 __declspec(property(get=GetV)) SP1 V;
282 SP1 GetV() { return SP1(); }
296 __declspec(property(get=GetV)) int V;
297 int GetV() { return 123; }
308 __declspec(property(get=GetV)) T V;
309 int GetV() { return 123; }
317 __declspec(property(get=GetV)) T V;
318 T GetV() { return 123; }
329 __declspec(property(get=GetV, put=SetV)) int V;
330 int GetV() { return 123; }
343 __declspec(property(get=GetV, put=SetV)) T V;
344 T GetV() { return 0; }
386 __declspec(property(get=GetV)) int V;
388 int& GetV() { return _v; }
402 __declspec(property(get=GetV)) int : 10; // expected-error {{anonymous property is not supported}}