Lines Matching refs:GetV
259 __declspec(property(get=GetV)) int V1;
261 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
263 __declspec(property(get=GetV, put=SetV)) int V5;
265 int GetV() { return 123; } in GetV() function
285 __declspec(property(get=GetV)) SP1 V;
286 SP1 GetV() { return SP1(); } in GetV() function
300 __declspec(property(get=GetV)) int V;
301 int GetV() { return 123; } in GetV() function
312 __declspec(property(get=GetV)) T V;
313 int GetV() { return 123; } in GetV() function
321 __declspec(property(get=GetV)) T V;
322 T GetV() { return 123; } in GetV() function
333 __declspec(property(get=GetV, put=SetV)) int V;
334 int GetV() { return 123; } in GetV() function
347 __declspec(property(get=GetV, put=SetV)) T V;
348 T GetV() { return 0; } in GetV() function
390 __declspec(property(get=GetV)) int V;
392 int& GetV() { return _v; } in GetV() function
406 __declspec(property(get=GetV)) int : 10; // expected-error {{anonymous property is not supported}}