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

1 2

  /frameworks/native/cmds/screenshot/
Android.mk 4 LOCAL_SRC_FILES := screenshot.c
6 LOCAL_MODULE := screenshot
  /prebuilts/devtools/tools/lib/
screenshot2.jar 
uiautomatorviewer.jar 
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
ScreenshotStubActivity.java 16 package com.android.systemui.screenshot;
ScreenshotTest.java 16 package com.android.systemui.screenshot;
30 * Functional tests for the global screenshot feature.
44 * to trigger the screenshot, and verifies the screenshot was taken successfully.
57 // unlikely, but check if a new screenshot file was already created
59 // wait for screenshot to be created
64 assertNotNull(String.format("Could not find screenshot after %d seconds",
69 assertTrue(String.format("Detected new screenshot %s but its not a file",
71 assertTrue(String.format("Detected new screenshot %s but its not an image",
101 * Inject the key sequence to take a screenshot
    [all...]
  /frameworks/base/cmds/screencap/
screencap.cpp 146 ScreenshotClient screenshot; local
148 if (display != NULL && screenshot.update(display) == NO_ERROR) {
149 base = screenshot.getPixels();
150 w = screenshot.getWidth();
151 h = screenshot.getHeight();
152 s = screenshot.getStride();
153 f = screenshot.getFormat();
154 size = screenshot.getSize();
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 1 // To make sure we can uniquely identify each screenshot tab, add an id as a
2 // query param to the url that displays the screenshot.
8 var viewTabUrl = [chrome.extension.getURL('screenshot.html'),
27 // the screenshot. The url of the tab which will display the
28 // screenshot includes a query parameter with a unique id, which
45 // Listen for a click on the camera icon. On that click, take a screenshot.
  /external/chromium/chrome/browser/resources/
bug_report.js 45 function addScreenshot(divId, screenshot) {
64 thumbnail.src = screenshot + '?' + Date.now();
89 if ($('screenshot-checkbox').checked && selectedThumbnailId)
160 * Change the type of screenshot we're showing to the user from
161 * the current screenshot to saved screenshots
164 $('screenshot-label-current').style.display = 'none';
165 $('screenshot-label-saved').style.display = 'inline';
168 $('screenshot-link-tosaved').style.display = 'none';
169 $('screenshot-link-tocurrent').style.display = 'inline';
175 * Change the type of screenshot we're showing to the user fro
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 109 Bitmap screenshot = mUiAutomation.takeScreenshot(); local
110 if (screenshot == null) {
117 screenshot.compress(Bitmap.CompressFormat.PNG, quality, bos);
131 screenshot.recycle();
  /frameworks/base/core/java/android/view/
SurfaceControl.java 524 * @param display The display to take the screenshot of.
525 * @param consumer The {@link Surface} to take the screenshot into.
531 * include in the screenshot.
533 * include in the screenshot.
535 public static void screenshot(IBinder display, Surface consumer, method in class:SurfaceControl
537 screenshot(display, consumer, width, height, minLayer, maxLayer, false); method
543 * @param display The display to take the screenshot of.
544 * @param consumer The {@link Surface} to take the screenshot into.
550 public static void screenshot(IBinder display, Surface consumer, method in class:SurfaceControl
552 screenshot(display, consumer, width, height, 0, 0, true) method
561 public static void screenshot(IBinder display, Surface consumer) { method in class:SurfaceControl
562 screenshot(display, consumer, 0, 0, 0, 0, true); method
586 public static Bitmap screenshot(int width, int height, int minLayer, int maxLayer) { method in class:SurfaceControl
605 public static Bitmap screenshot(int width, int height) { method in class:SurfaceControl
612 private static void screenshot(IBinder display, Surface consumer, method in class:SurfaceControl
    [all...]
  /external/webkit/Tools/MiniBrowser/qt/
BrowserWindow.h 67 void screenshot();
BrowserWindow.cpp 89 viewMenu->addAction("Take Screen Shot...", this, SLOT(screenshot()));
232 void BrowserWindow::screenshot() function in class:BrowserWindow
239 label->setWindowTitle("Screenshot - Preview");
245 QString fileName = QFileDialog::getSaveFileName(label, "Screenshot", QString(), QString("PNG File (.png)"));
256 label->setWindowTitle(QString("Screenshot - Saved at %1").arg(fileName));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
TakeScreenshotService.java 17 package com.android.systemui.screenshot;
GlobalScreenshot.java 17 package com.android.systemui.screenshot;
97 private static final String SCREENSHOT_SHARE_SUBJECT_TEMPLATE = "Screenshot (%s)";
197 // Create screenshot directory if it doesn't exist
200 // Save the screenshot to the MediaStore
272 // Show the final notification to indicate screenshot saved
275 // Create the intent to show the screenshot in gallery
353 // Inflate the screenshot layout
399 * Creates a new worker thread and saves the screenshot to the media store.
430 * Takes a screenshot of the current display and shows an animation.
433 // We need to orient the screenshot correctly (and the Surface api seems to take screenshot
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/editors/
UiAutomatorViewer.java 161 ((UiAutomatorViewer) editor).setModel(r.model, r.uiHierarchy, r.screenshot);
169 protected void setModel(UiAutomatorModel model, File modelFile, Image screenshot) {
170 mView.setModel(model, modelFile, screenshot);
  /build/target/product/
base.mk 96 screenshot \
  /prebuilts/devtools/tools/
screenshot2 74 exec java -Xmx128M $os_opts $java_debug -Djava.ext.dirs="$frameworkdir" -Djava.library.path="$libdir" -Dcom.android.screenshot.bindir="$progdir" -jar "$jarpath" "$@"
  /external/chromium/chrome/browser/
bug_report_util.cc 317 userfeedback::PostedScreenshot screenshot; local
318 screenshot.set_mime_type(kPngMimeType);
319 // Set the dimensions of the screenshot
323 *(screenshot.mutable_dimensions()) = dimensions;
324 screenshot.set_binary_content(std::string(png_data, png_data_length));
326 // Set the screenshot object in feedback
327 *(feedback_data.mutable_screenshot()) = screenshot;
  /external/chromium/chrome/browser/ui/webui/
bug_report_ui.cc 83 FilePath screenshot = screenshots.Next(); local
84 while (!screenshot.empty()) {
86 screenshot.BaseName().value());
90 screenshot = screenshots.Next();
152 // Do not refresh screenshot, do not create a new tab
255 localized_strings.SetString(std::string("current-screenshot"),
257 localized_strings.SetString(std::string("saved-screenshot"),
271 localized_strings.SetString(std::string("choose-different-screenshot"),
274 localized_strings.SetString(std::string("choose-original-screenshot"),
456 // setting the screenshot to NULL, effectively disabling the sourc
    [all...]
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.h 167 void screenshot();
launcherwindow.cpp 183 fileMenu->addAction("Take Screen Shot...", this, SLOT(screenshot()));
657 void LauncherWindow::screenshot() function in class:LauncherWindow
664 label->setWindowTitle("Screenshot - Preview");
670 QString fileName = QFileDialog::getSaveFileName(label, "Screenshot");
674 label->setWindowTitle(QString("Screenshot - Saved at %1").arg(fileName));
    [all...]
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 140 return SurfaceControl.screenshot(width, height);
  /packages/apps/Nfc/src/com/android/nfc/
SendUi.java 58 * mPreAnimator: scales the screenshot down to INTERMEDIATE_SCALE
59 * mSlowSendAnimator: scales the screenshot down to 0.2f (used as a "send in progress" animation)
60 * mFastSendAnimator: quickly scales the screenshot down to 0.0f (used for send success)
62 * mScaleUpAnimator: scales the screenshot back up to full screen (used for failure or receiving)
154 // Besides animating the screenshot, the Beam UI also renders
157 // "pre-animation" has scaled down the screenshot, to avoid
192 mScreenshotLayout = mLayoutInflater.inflate(R.layout.screenshot, null);
194 mScreenshotView = (ImageView) mScreenshotLayout.findViewById(R.id.screenshot);
289 // There's no point in taking the screenshot if
305 // Still waiting for screenshot, store request in stat
    [all...]
  /build/
envsetup.sh 1117 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1118 if [ "$screenshot" = "" ]; then
1122 echo "${screenshot}"
1123 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
    [all...]
  /frameworks/base/services/java/com/android/server/power/
ElectronBeam.java 49 * some GL transformations to a screenshot.
94 // Texture names. We only use one texture, which contains the screenshot.
160 // painting the screenshot as-is.
395 SurfaceControl.screenshot(SurfaceControl.getBuiltInDisplay(

Completed in 3111 milliseconds

1 2