Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:GetV

219   __declspec(property(get=GetV)) int V1;
221 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
223 __declspec(property(get=GetV, put=SetV)) int V5;
225 int GetV() { return 123; }
245 __declspec(property(get=GetV)) SP1 V;
246 SP1 GetV() { return SP1(); }
260 __declspec(property(get=GetV)) int V;
261 int GetV() { return 123; }
272 __declspec(property(get=GetV)) T V;
273 int GetV() { return 123; }
281 __declspec(property(get=GetV)) T V;
282 T GetV() { return 123; }
293 __declspec(property(get=GetV, put=SetV)) int V;
294 int GetV() { return 123; }
307 __declspec(property(get=GetV, put=SetV)) T V;
308 T GetV() { return 0; }
350 __declspec(property(get=GetV)) int V;
352 int& GetV() { return _v; }
366 __declspec(property(get=GetV)) int : 10; // expected-error {{anonymous property is not supported}}