HomeSort by relevance Sort by last modified time
    Searched defs:SetV (Results 1 - 2 of 2) sorted by null

  /external/clang/test/Parser/
MicrosoftExtensions.cpp 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 specifies 'get' accessor twice}}
326 void SetV(int v) {}
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 198 __declspec(property(put=SetV)) int V2;
200 __declspec(property(get=GetV_NotExist, put=SetV)) int V4;
201 __declspec(property(get=GetV, put=SetV)) int V5;
204 void SetV(int i) {}
271 __declspec(property(get=GetV, put=SetV)) int V;
273 void SetV(int v) {}
285 __declspec(property(get=GetV, put=SetV)) T V;
287 void SetV(T v) {}
303 c.SetV(c.V); // CallExpr arg

Completed in 172 milliseconds