OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:screenShot
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/packages/Shell/src/com/android/shell/
Screenshooter.java
53
* Takes a
screenshot
.
55
* @return The
screenshot
bitmap on success, null otherwise.
92
Log.d(TAG, "Taking
screenshot
of dimensions " + displayWidth + " x " + displayHeight);
93
// Take the
screenshot
94
Bitmap
screenShot
=
95
SurfaceControl.
screenshot
((int) screenshotWidth, (int) screenshotHeight);
96
if (
screenShot
== null) {
97
Log.e(TAG, "Failed to take
screenshot
of dimensions " + screenshotWidth + " x "
102
// Rotate the
screenshot
to the current orientation
111
canvas.drawBitmap(
screenShot
, 0, 0, null)
[
all
...]
/frameworks/base/core/java/android/app/
UiAutomation.java
672
* Takes a
screenshot
.
674
* @return The
screenshot
bitmap on success, null otherwise.
714
// Take the
screenshot
715
Bitmap
screenShot
= null;
718
screenShot
= mUiAutomationConnection.takeScreenshot((int) screenshotWidth,
720
if (
screenShot
== null) {
728
// Rotate the
screenshot
to the current orientation
737
canvas.drawBitmap(
screenShot
, 0, 0, null);
739
screenShot
.recycle();
740
screenShot
= unrotatedScreenShot
[
all
...]
/packages/apps/Camera2/src/com/android/camera/ui/
ModeTransitionView.java
563
* Setup the mode cover with a
screenshot
.
565
public void setupModeCover(Bitmap
screenShot
) {
566
mBackgroundBitmap =
screenShot
;
/external/robolectric/v3/runtime/
android-all-4.3_r2-robolectric-0.jar
Completed in 110 milliseconds