HomeSort by relevance Sort by last modified time
    Searched refs:takeScreenshot (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/droiddriver/src/io/appium/droiddriver/
UiDevice.java 60 boolean takeScreenshot(String path);
74 boolean takeScreenshot(String path, CompressFormat format, int quality);
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
ScreenCaptureDisabledTest.java 53 if (getInstrumentation().getUiAutomation().takeScreenshot() == null) {
57 assertNull(getInstrumentation().getUiAutomation().takeScreenshot());
64 if (getInstrumentation().getUiAutomation().takeScreenshot() != null) {
68 assertNotNull(getInstrumentation().getUiAutomation().takeScreenshot());
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationUiDevice.java 38 protected Bitmap takeScreenshot() {
43 return uiAutomation.takeScreenshot();
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceActivityLegacyFlowTest.java 78 Bitmap before = mTestUtils.takeScreenshot();
83 Bitmap after = mTestUtils.takeScreenshot();
115 Bitmap before = mTestUtils.takeScreenshot();
121 Bitmap after = mTestUtils.takeScreenshot();
PreferenceActivityFlowTest.java 294 Bitmap before = mTestUtils.takeScreenshot();
302 Bitmap after = mTestUtils.takeScreenshot();
406 Bitmap before = mTestUtils.takeScreenshot();
415 Bitmap after = mTestUtils.takeScreenshot();
462 Bitmap before = mTestUtils.takeScreenshot();
469 Bitmap after = mTestUtils.takeScreenshot();
500 Bitmap before = mTestUtils.takeScreenshot();
514 Bitmap after = mTestUtils.takeScreenshot();
533 Bitmap before = mTestUtils.takeScreenshot();
542 Bitmap after = mTestUtils.takeScreenshot();
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseUiDevice.java 85 public boolean takeScreenshot(String path) {
86 return takeScreenshot(path, Bitmap.CompressFormat.PNG, 0);
90 public boolean takeScreenshot(String path, CompressFormat format, int quality) {
91 Logs.call(this, "takeScreenshot", path, quality);
92 Bitmap screenshot = takeScreenshot();
116 protected abstract Bitmap takeScreenshot();
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AbstractAutoFillActivity.java 78 * {@link UiBot#takeScreenshot()} instead.
80 public Bitmap takeScreenshot() {
81 return takeScreenshot(findViewById(android.R.id.content).getRootView());
87 public Bitmap takeScreenshot(View view) {
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/
ScreenshotListener.java 111 File img = takeScreenshot(fileName);
127 public File takeScreenshot(String fileName){
152 .takeScreenshot().compress(Bitmap.CompressFormat.PNG, mQuality, out);
  /frameworks/base/packages/Shell/src/com/android/shell/
Screenshooter.java 42 static Bitmap takeScreenshot() {
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 41 Bitmap takeScreenshot(in Rect crop, int rotation);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
GlobalActionPerformer.java 99 return takeScreenshot();
190 private boolean takeScreenshot() {
193 screenshotHelper.takeScreenshot(android.view.WindowManager.TAKE_SCREENSHOT_FULLSCREEN,
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
VectorDrawableScaleTest.java 72 screenShot = takeScreenshot(srcRect);
97 private Bitmap takeScreenshot(Rect srcRect) {
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 108 public boolean takeScreenshot(File storePath, int quality) {
109 Bitmap screenshot = mUiAutomation.takeScreenshot();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
TakeScreenshotService.java 65 mScreenshot.takeScreenshot(finisher, msg.arg1 > 0, msg.arg2 > 0);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ActivityTestBase.java 121 public Bitmap takeScreenshot(TestPositionInfo testPositionInfo) {
135 return mScreenshotter.takeScreenshot(testPositionInfo);
157 return takeScreenshot(runRenderSpec(testCase));
175 * {@code getInstrumentation().getUiAutomation().takeScreenshot()},
187 Bitmap takeScreenshot(TestPositionInfo params);
259 Bitmap testCaseBitmap = takeScreenshot(testPositionInfo);
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
NavigationBarColorVerifier.java 87 Bitmap takeScreenshot(@ColorInt int navigationBarColor) throws Exception;
95 screenShots.add(new ScreenShot(color, screenshotSupplier.takeScreenshot(color)));
LightNavigationBarVerifier.java 47 Bitmap takeScreenshot(@ColorInt int navigationBarColor, boolean lightMode) throws Exception;
142 screenshotSupplier.takeScreenshot(Color.BLACK, false));
144 screenshotSupplier.takeScreenshot(Color.BLACK, true));
  /cts/tests/tests/graphics/src/android/graphics/cts/
VulkanPreTransformTest.java 99 private static Bitmap takeScreenshot() {
124 Bitmap bitmap = takeScreenshot();
  /cts/tests/tests/systemui/src/android/systemui/cts/
LightBarTestBase.java 44 Bitmap fullBitmap = getInstrumentation().getUiAutomation().takeScreenshot();
49 Bitmap fullBitmap = getInstrumentation().getUiAutomation().takeScreenshot();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PixelCopyWindow.java 40 btn.setOnClickListener((v) -> takeScreenshot());
82 private void takeScreenshot() {
  /packages/apps/Nfc/src/com/android/nfc/
P2pEventManager.java 76 mSendUi.takeScreenshot();
89 mSendUi.takeScreenshot();
  /cts/tests/framework/base/activitymanager/src/android/server/am/
SplashscreenTests.java 42 final Bitmap image = takeScreenshot();
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
InfrastructureTests.java 42 takeScreenshot(new TestPositionInfo(new Point(), new Point()));
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
InstrumentationUiDevice.java 42 protected Bitmap takeScreenshot() {
  /frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
GlobalActionPerformerTest.java 85 verify(mMockScreenshotHelper).takeScreenshot(

Completed in 537 milliseconds

1 2 3 4