OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:takeScreenshot
(Results
1 - 14
of
14
) sorted by null
/external/droiddriver/src/io/appium/droiddriver/
UiDevice.java
60
boolean
takeScreenshot
(String path);
74
boolean
takeScreenshot
(String path, CompressFormat format, int quality);
/external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationUiDevice.java
38
protected Bitmap
takeScreenshot
() {
43
return uiAutomation.
takeScreenshot
();
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
InstrumentationUiDevice.java
42
protected Bitmap
takeScreenshot
() {
/cts/tests/autofillservice/src/android/autofillservice/cts/
AbstractAutoFillActivity.java
85
* {@link UiBot#
takeScreenshot
()} instead.
87
public Bitmap
takeScreenshot
() {
88
return
takeScreenshot
(findViewById(android.R.id.content).getRootView());
94
public Bitmap
takeScreenshot
(View view) {
/cts/tests/tests/graphics/src/android/graphics/cts/
VulkanPreTransformTest.java
146
private static Bitmap
takeScreenshot
() {
172
Bitmap bitmap =
takeScreenshot
();
/cts/tests/tests/preference/src/android/preference/cts/
TestUtils.java
61
Bitmap
takeScreenshot
() {
65
Bitmap bt = mAutomation.
takeScreenshot
();
/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/inputmethod/src/android/view/inputmethod/cts/util/
LightNavigationBarVerifier.java
48
Bitmap
takeScreenshot
(@ColorInt int navigationBarColor, boolean lightMode) throws Exception;
143
screenshotSupplier.
takeScreenshot
(Color.BLACK, false));
145
screenshotSupplier.
takeScreenshot
(Color.BLACK, true));
NavigationBarColorVerifier.java
88
Bitmap
takeScreenshot
(@ColorInt int navigationBarColor) throws Exception;
96
screenShots.add(new ScreenShot(color, screenshotSupplier.
takeScreenshot
(color)));
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimatedVectorDrawableParameterizedTest.java
153
Bitmap screenShot =
takeScreenshot
(srcRect);
316
Bitmap screenShot =
takeScreenshot
(srcRect);
344
private Bitmap
takeScreenshot
(Rect srcRect) {
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SurfaceViewTests.java
116
Bitmap source = getInstrumentation().getUiAutomation().
takeScreenshot
();
137
public Bitmap
takeScreenshot
(TestPositionInfo testPositionInfo) {
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ActivityTestBase.java
127
private Bitmap
takeScreenshot
(TestPositionInfo testPositionInfo) {
141
return mScreenshotter.
takeScreenshot
(testPositionInfo);
167
return
takeScreenshot
(runRenderSpec(testCase));
185
* {@code getInstrumentation().getUiAutomation().
takeScreenshot
()},
197
Bitmap
takeScreenshot
(TestPositionInfo params);
269
Bitmap testCaseBitmap =
takeScreenshot
(testPositionInfo);
/cts/tests/tests/uirendering27/src/android/uirendering/cts/testinfrastructure/
ActivityTestBase.java
127
private Bitmap
takeScreenshot
(TestPositionInfo testPositionInfo) {
141
return mScreenshotter.
takeScreenshot
(testPositionInfo);
167
return
takeScreenshot
(runRenderSpec(testCase));
185
* {@code getInstrumentation().getUiAutomation().
takeScreenshot
()},
197
Bitmap
takeScreenshot
(TestPositionInfo params);
269
Bitmap testCaseBitmap =
takeScreenshot
(testPositionInfo);
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
ActivityManagerTestBase.java
543
protected Bitmap
takeScreenshot
() {
544
return getInstrumentation().getUiAutomation().
takeScreenshot
();
[
all
...]
Completed in 535 milliseconds