Searched refs:GetV (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp219 __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; } function in struct:StructWithProperty
245 __declspec(property(get=GetV)) SP1 V;
246 SP1 GetV() { return SP1(); } function in struct:SP2
260 __declspec(property(get=GetV)) int V;
261 int GetV() { return 123; } function in struct:SP4
272 __declspec(property(get=GetV)) T V;
273 int GetV() { retur function in struct:SP5
282 T GetV() { return 123; } function in struct:SP6
294 int GetV() { return 123; } function in struct:SP7
308 T GetV() { return 0; } function in struct:SP9
352 int& GetV() { return _v; } function in struct:SP11
[all...]
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp313 __declspec(property(get=GetV)) int V8; // no-warning
314 __declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property accessor list}}
315 __declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property declaration}}
316 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning
317 __declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration specifies 'get' accessor twice}}
319 int GetV() { return 123; } function in struct:pure_virtual_dtor_inline::StructWithProperty

Completed in 92 milliseconds