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 316 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning
317 __declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration specifies 'get' accessor twice}}
320 void SetV(int v) {}
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 220 __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) {}
293 __declspec(property(get=GetV, put=SetV)) int V;
295 void SetV(int v) {}
307 __declspec(property(get=GetV, put=SetV)) T V;
309 void SetV(T v) {}
325 c.SetV(c.V); // CallExpr arg

Completed in 1937 milliseconds