OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetV
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/SemaCXX/
MicrosoftExtensions.cpp
255
__declspec(property(get=
GetV
)) int V1;
257
__declspec(property(get=
GetV
, put=SetV_NotExist)) int V3;
259
__declspec(property(get=
GetV
, put=SetV)) int V5;
261
int
GetV
() { return 123; }
281
__declspec(property(get=
GetV
)) SP1 V;
282
SP1
GetV
() { return SP1(); }
296
__declspec(property(get=
GetV
)) int V;
297
int
GetV
() { return 123; }
308
__declspec(property(get=
GetV
)) T V;
309
int
GetV
() { return 123;
[
all
...]
/external/clang/test/Parser/
MicrosoftExtensions.cpp
318
__declspec(property(get=
GetV
)) int V8; // no-warning
319
__declspec(property(get=
GetV
=)) int V9; // expected-error {{expected ',' or ')' at end of property accessor list}}
320
__declspec(property(get=
GetV
,)) int V10; // expected-error {{expected 'get' or 'put' in property declaration}}
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}}
323
__declspec(property(get=
GetV
)) int V13 = 3; // expected-error {{property declaration cannot have an in-class initializer}}
325
int
GetV
() { return 123; }
/external/vixl/src/aarch64/
simulator-aarch64.h
[
all
...]
simulator-aarch64.cc
853
ReadNzcv().
GetV
(),
[
all
...]
Completed in 955 milliseconds