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

  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 219 __declspec(property(get=GetV)) int V1;
221 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
223 __declspec(property(get=GetV, put=SetV)) int V5;
225 int GetV() { return 123; }
245 __declspec(property(get=GetV)) SP1 V;
246 SP1 GetV() { return SP1(); }
260 __declspec(property(get=GetV)) int V;
261 int GetV() { return 123; }
272 __declspec(property(get=GetV)) T V;
273 int GetV() { return 123;
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 313 __declspec(property(get=GetV)) int V8; // no-warning
314 __declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property accessor list}}
315 __declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property declaration}}
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}}
319 int GetV() { return 123; }

Completed in 430 milliseconds