Home
last modified time | relevance | path

Searched refs:GetV (Results 1 – 9 of 9) sorted by relevance

/external/clang/test/SemaCXX/
DMicrosoftExtensions.cpp255 __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; } in GetV() function
281 __declspec(property(get=GetV)) SP1 V;
282 SP1 GetV() { return SP1(); } in GetV() function
296 __declspec(property(get=GetV)) int V;
297 int GetV() { return 123; } in GetV() function
308 __declspec(property(get=GetV)) T V;
309 int GetV() { return 123; } in GetV() function
[all …]
/external/llvm-project/clang/test/SemaCXX/
DMicrosoftExtensions.cpp250 __declspec(property(get=GetV)) int V1;
252 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
254 __declspec(property(get=GetV, put=SetV)) int V5;
256 int GetV() { return 123; } in GetV() function
276 __declspec(property(get=GetV)) SP1 V;
277 SP1 GetV() { return SP1(); } in GetV() function
291 __declspec(property(get=GetV)) int V;
292 int GetV() { return 123; } in GetV() function
303 __declspec(property(get=GetV)) T V;
304 int GetV() { return 123; } in GetV() function
[all …]
/external/clang/test/Parser/
DMicrosoftExtensions.cpp318 __declspec(property(get=GetV)) int V8; // no-warning
319 …__declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property…
320 …__declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property d…
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…
323 …__declspec(property(get=GetV)) int V13 = 3; // expected-error {{property declaration cannot have a…
325 int GetV() { return 123; }
/external/llvm-project/clang/test/Parser/
DMicrosoftExtensions.cpp347 __declspec(property(get=GetV)) int V8; // no-warning
348 …__declspec(property(get=GetV=)) int V9; // expected-error {{expected ',' or ')' at end of property…
349 …__declspec(property(get=GetV,)) int V10; // expected-error {{expected 'get' or 'put' in property d…
350 __declspec(property(get=GetV,put=SetV)) int V11; // no-warning
351 …__declspec(property(get=GetV,put=SetV,get=GetV)) int V12; // expected-error {{property declaration…
352 …__declspec(property(get=GetV)) int V13 = 3; // expected-error {{property declaration cannot have a…
354 int GetV() { return 123; }
/external/webrtc/common_video/
Dvideo_frame_unittest.cc240 int GetV(rtc::scoped_refptr<PlanarYuvBuffer> buf, int col, int row) { in GetV() function
482 EXPECT_EQ(GetV(original, i, j), GetV(buf, i, j)); in TEST_P()
486 EXPECT_EQ(GetV(picture, i - kOffsetx, j - kOffsety), GetV(buf, i, j)); in TEST_P()
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage_data.h204 inline const Image<uint8_t>* GetV() const { in GetV() function
Dkeypoint_detector.cc43 const Image<uint8_t>& v_data = *image_data.GetV(); in ScoreKeypoints()
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc1194 ReadNzcv().GetV(), in PrintSystemRegister()
4466 ReadNzcv().SetZ(ReadNzcv().GetZ() | ReadNzcv().GetV()); in VisitSystem()
4467 ReadNzcv().SetC(ReadNzcv().GetC() & ~ReadNzcv().GetV()); in VisitSystem()
Dsimulator-aarch64.h1807 bool ReadV() const { return nzcv_.GetV() != 0; }