Searched defs:SetV (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp347 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning
348 __declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration specifies 'get' accessor twice}}
351 void SetV(int v) {} function in struct:StructWithProperty
/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp220 __declspec(property(put=SetV)) int V2;
222 __declspec(property(get=GetV_NotExist, put=SetV)) int V4;
223 __declspec(property(get=GetV, put=SetV)) int V5;
226 void SetV(int i) {} function in struct:StructWithProperty
293 __declspec(property(get=GetV, put=SetV)) int V;
295 void SetV(int v) {} function in struct:SP7
307 __declspec(property(get=GetV, put=SetV)) T V;
309 void SetV(T v) {} function in struct:SP9
325 c.SetV(c.V); // CallExpr arg

Completed in 130 milliseconds