Lines Matching defs:GetV
265 __declspec(property(get=GetV)) int V1;
267 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
269 __declspec(property(get=GetV, put=SetV)) int V5;
271 int GetV() { return 123; }
291 __declspec(property(get=GetV)) SP1 V;
292 SP1 GetV() { return SP1(); }
306 __declspec(property(get=GetV)) int V;
307 int GetV() { return 123; }
318 __declspec(property(get=GetV)) T V;
319 int GetV() { return 123; }
327 __declspec(property(get=GetV)) T V;
328 T GetV() { return 123; }
339 __declspec(property(get=GetV, put=SetV)) int V;
340 int GetV() { return 123; }
353 __declspec(property(get=GetV, put=SetV)) T V;
354 T GetV() { return 0; }
391 __declspec(property(get=GetV)) int V;
393 int& GetV() { return _v; }
407 __declspec(property(get=GetV)) int : 10; // expected-error {{anonymous property is not supported}}