Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp265 int GetV() { return 123; } in GetV() function
285 __declspec(property(get=GetV)) SP1 V;
286 SP1 GetV() { return SP1(); } in GetV() function
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
334 int GetV() { return 123; } in GetV() function
348 T GetV() { return 0; } in GetV() function
[all …]
/llvm-project-15.0.7/clang/test/Parser/
H A DMicrosoftExtensions.cpp363 __declspec(property(get=GetV)) int V8; // no-warning
364 …__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-warning
367 …__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; }