Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp260 __declspec(property(put=SetV)) int V2;
262 __declspec(property(get=GetV_NotExist, put=SetV)) int V4;
263 __declspec(property(get=GetV, put=SetV)) int V5;
266 void SetV(int i) {} in SetV() function
333 __declspec(property(get=GetV, put=SetV)) int V;
335 void SetV(int v) {} in SetV() function
347 __declspec(property(get=GetV, put=SetV)) T V;
349 void SetV(T v) {} in SetV() function
365 c.SetV(c.V); // CallExpr arg in TestSP9()
/llvm-project-15.0.7/clang/test/Parser/
H A DMicrosoftExtensions.cpp366 __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…
371 void SetV(int v) {}