Home
last modified time | relevance | path

Searched refs:takeScreenshot (Results 1 – 25 of 25) sorted by relevance

/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
DFlutterView.h20 - (flutter::Rasterizer::Screenshot)takeScreenshot:(flutter::Rasterizer::ScreenshotType)type
DFlutterView.mm129 auto screenshot = [_delegate takeScreenshot:flutter::Rasterizer::ScreenshotType::UncompressedImage
DFlutterEngine.mm437 - (flutter::Rasterizer::Screenshot)takeScreenshot:(flutter::Rasterizer::ScreenshotType)type
439 FML_DCHECK(_shell) << "Cannot takeScreenshot without a shell";
/third_party/flutter/skia/third_party/externals/angle2/util/
DOSWindow.h40 virtual bool takeScreenshot(uint8_t *pixelData);
DOSWindow.cpp374 bool OSWindow::takeScreenshot(uint8_t *pixelData) in takeScreenshot() function in OSWindow
/third_party/flutter/skia/third_party/externals/angle2/util/windows/win32/
DWin32Window.h27 bool takeScreenshot(uint8_t *pixelData) override;
DWin32Window.cpp601 bool Win32Window::takeScreenshot(uint8_t *pixelData) in takeScreenshot() function in Win32Window
/third_party/skia/third_party/externals/angle2/util/windows/win32/
DWin32Window.h27 bool takeScreenshot(uint8_t *pixelData) override;
DWin32Window.cpp609 bool Win32Window::takeScreenshot(uint8_t *pixelData) in takeScreenshot() function in Win32Window
/third_party/skia/third_party/externals/angle2/util/
DOSWindow.h41 virtual bool takeScreenshot(uint8_t *pixelData);
DOSWindow.cpp387 bool OSWindow::takeScreenshot(uint8_t *pixelData) in takeScreenshot() function in OSWindow
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dresident_runner_test.dart329 when(mockDevice.takeScreenshot(any))
365 …test('ResidentRunner bails taking screenshot on debug device if takeScreenshot throws', () => test…
367 when(mockDevice.takeScreenshot(any)).thenThrow(Exception());
391 when(mockDevice.takeScreenshot(any))
/third_party/flutter/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLDirectCompositionTest.cpp279 bool success = mOSWindow->takeScreenshot(pixelBuffer); in TEST_P()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLDirectCompositionTest.cpp289 bool success = mOSWindow->takeScreenshot(pixelBuffer); in TEST_P()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dscreenshot.dart105 await device.takeScreenshot(outputFile);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ios/
Dsimulators.dart179 Future<void> takeScreenshot(String deviceId, String outputPath) async {
510 Future<void> takeScreenshot(File outputFile) {
511 return SimControl.instance.takeScreenshot(id, outputFile.path);
Ddevices.dart439 Future<void> takeScreenshot(File outputFile) async {
440 await iMobileDevice.takeScreenshot(outputFile);
Dmac.dart250 Future<void> takeScreenshot(File outputFile) {
/third_party/flutter/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuANGLENativeDisplayFactory.cpp345 if (!mWindow->takeScreenshot(reinterpret_cast<uint8_t *>(dst->getAccess().getDataPtr()))) in readScreenPixels()
/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuANGLENativeDisplayFactory.cpp387 if (!mWindow->takeScreenshot(reinterpret_cast<uint8_t *>(dst->getAccess().getDataPtr()))) in readScreenPixels()
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ios/
Dmac_test.dart199 expect(() async => await iMobileDevice.takeScreenshot(mockOutputFile), throwsA(anything));
211 await iMobileDevice.takeScreenshot(mockOutputFile);
Dsimulators_test.dart222 await deviceUnderTest.takeScreenshot(mockFile);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Ddevice.dart417 Future<void> takeScreenshot(File outputFile) => Future<void>.error('unimplemented');
Dresident_runner.dart737 await device.device.takeScreenshot(outputFile);
/third_party/flutter/flutter/packages/flutter_tools/lib/src/android/
Dandroid_device.dart651 Future<void> takeScreenshot(File outputFile) async {