Searched refs:GetV (Results 1 – 2 of 2) sorted by relevance
265 int GetV() { return 123; } in GetV() function285 __declspec(property(get=GetV)) SP1 V;286 SP1 GetV() { return SP1(); } in GetV() function301 int GetV() { return 123; } in GetV() function312 __declspec(property(get=GetV)) T V;313 int GetV() { return 123; } in GetV() function321 __declspec(property(get=GetV)) T V;322 T GetV() { return 123; } in GetV() function334 int GetV() { return 123; } in GetV() function348 T GetV() { return 0; } in GetV() function[all …]
363 __declspec(property(get=GetV)) int V8; // no-warning364 …__declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property…365 …__declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property d…366 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning367 …__declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration…368 …__declspec(property(get=GetV)) int V13 = 3; // expected-error {{property declaration cannot have a…370 int GetV() { return 123; }