Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
DMicrosoftExtensions.cpp197 __declspec(property(get=GetV)) int V1;
199 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
201 __declspec(property(get=GetV, put=SetV)) int V5;
203 int GetV() { return 123; } in GetV() function
223 __declspec(property(get=GetV)) SP1 V;
224 SP1 GetV() { return SP1(); } in GetV() function
238 __declspec(property(get=GetV)) int V;
239 int GetV() { return 123; } in GetV() function
250 __declspec(property(get=GetV)) T V;
251 int GetV() { return 123; } in GetV() function
[all …]
/external/clang/test/Parser/
DMicrosoftExtensions.cpp318 __declspec(property(get=GetV)) int V8; // no-warning
319 …__declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property…
320 …__declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property d…
321 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning
322 …__declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration…
323 …__declspec(property(get=GetV)) int V13 = 3; // expected-error {{property declaration cannot have a…
325 int GetV() { return 123; }