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

  /cts/libs/deviceutillegacy/src/com/android/compatibility/common/util/
SynchronousPixelCopy.java 93 public void onPixelCopyFinished(int copyResult) {
95 mStatus = copyResult;
  /build/make/tools/acp/
acp.c 117 int copyResult;
153 copyResult = copyFile(src, dst, options);
155 if (copyResult != 0)
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AbstractAutoFillActivity.java 101 final int copyResult = copy.request(getWindow(), srcRect, dest);
102 assertThat(copyResult).isEqualTo(PixelCopy.SUCCESS);
  /build/make/tools/libhost/
CopyFile.c 212 int srcFd, dstFd, statResult, copyResult;
291 copyResult = copyFileContents(dst, dstFd, src, srcFd);
295 if (copyResult != 0)
318 copyResult = -1;
320 copyResult = copyFileContents(dstRsrcName, dstFd,
326 if (copyResult != 0) {
  /cts/tests/tests/view/src/android/view/cts/
ViewAnimationMatrixTest.java 114 copyResult -> {
115 assertEquals(PixelCopy.SUCCESS, copyResult);
PixelCopyTest.java 724 int copyResult = PixelCopy.ERROR_SOURCE_NO_DATA;
726 copyResult = mCopyHelper.request(activity.getVideoView(), bitmap);
727 if (copyResult != PixelCopy.ERROR_SOURCE_NO_DATA) {
732 assertEquals(PixelCopy.SUCCESS, copyResult);
739 copyResult = mCopyHelper.request(activity.getVideoView(), new Rect(0, 0, 50, 50), bitmap);
740 assertEquals("Scaled copy request failed", PixelCopy.SUCCESS, copyResult);
744 copyResult = mCopyHelper.request(activity.getVideoView(), new Rect(25, 25, 75, 75), bitmap)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
VulkanPreTransformTest.java 153 int copyResult =
155 assertEquals("PixelCopy failed", PixelCopy.SUCCESS, copyResult);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SurfaceViewTests.java 142 int copyResult = copy.request(mSurfaceView, srcRect, dest);
143 Assert.assertEquals(PixelCopy.SUCCESS, copyResult);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ActivityTestBase.java 137 int copyResult = copy.request(getActivity().getWindow(), srcRect, dest);
138 Assert.assertEquals(PixelCopy.SUCCESS, copyResult);
  /cts/tests/tests/uirendering27/src/android/uirendering/cts/testinfrastructure/
ActivityTestBase.java 137 int copyResult = copy.request(getActivity().getWindow(), srcRect, dest);
138 Assert.assertEquals(PixelCopy.SUCCESS, copyResult);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimatedVectorDrawableParameterizedTest.java 348 int copyResult = copy.request(mActivity.getWindow(), srcRect, dest);
349 Assert.assertEquals(PixelCopy.SUCCESS, copyResult);
  /cts/tests/tests/media/src/android/media/cts/
DecodeAccuracyTestBase.java     [all...]
  /external/skia/tests/
GrSurfaceTest.cpp 315 auto copyResult = surfContext->copy(copySrc.get());
316 REPORTER_ASSERT(reporter, copyResult == (ioType == kRW_GrIOType));
    [all...]
  /external/skqp/tests/
GrSurfaceTest.cpp 313 auto copyResult = surfContext->copy(copySrc.get());
314 REPORTER_ASSERT(reporter, copyResult == (ioType == kRW_GrIOType));

Completed in 2339 milliseconds