OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
344
__declspec(property(get=
GetV
)) int V8; // no-warning
345
__declspec(property(get=
GetV
=)) int V9; // expected-error {{expected ',' or ')' at end of property accessor list}}
346
__declspec(property(get=
GetV
,)) int V10; // expected-error {{expected 'get' or 'put' in property declaration}}
347
__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}}
350
int
GetV
() { return 123; }
Completed in 409 milliseconds