HomeSort by relevance Sort by last modified time
    Searched defs:screenshot (Results 1 - 16 of 16) sorted by null

  /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/packages/SystemUI/src/com/android/systemui/screenshot/
TakeScreenshotService.java 17 package com.android.systemui.screenshot;
GlobalScreenshot.java 17 package com.android.systemui.screenshot;
175 // Save the screenshot to the MediaStore
227 // Show the final notification to indicate screenshot saved
230 // Create the intent to show the screenshot in gallery
303 // Inflate the screenshot layout
349 * Creates a new worker thread and saves the screenshot to the media store.
377 * Takes a screenshot of the current display and shows an animation.
380 // We need to orient the screenshot correctly (and the Surface api seems to take screenshots
395 // Take the screenshot
396 mScreenBitmap = Surface.screenshot((int) dims[0], (int) dims[1])
    [all...]
  /sdk/uiautomatorviewer/src/com/android/uiautomator/actions/
OpenFilesAction.java 62 File screenshot = d.getScreenshotFile(); local
63 if (screenshot != null) {
65 ImageData[] data = new ImageLoader().load(screenshot.getAbsolutePath());
71 + screenshot.getAbsolutePath());
  /frameworks/base/cmds/screencap/
screencap.cpp 141 ScreenshotClient screenshot; local
143 if (display != NULL && screenshot.update(display) == NO_ERROR) {
144 base = screenshot.getPixels();
145 w = screenshot.getWidth();
146 h = screenshot.getHeight();
147 f = screenshot.getFormat();
148 size = screenshot.getSize();
  /sdk/screenshot/src/com/android/screenshot/
Screenshot.java 17 package com.android.screenshot;
36 public class Screenshot {
115 String adbLocation = System.getProperty("com.android.screenshot.bindir"); //$NON-NLS-1$
190 System.out.println("Taking screenshot from: " + target.getSerialNumber());
  /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/webkit/Tools/MiniBrowser/qt/
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));
  /sdk/uiautomatorviewer/src/com/android/uiautomator/
UiAutomatorHelper.java 143 monitor.subTask("Obtaining device screenshot");
148 String msg = "Error taking device screenshot: " + e.getMessage();
161 Image screenshot = new Image(Display.getDefault(), imageData); local
163 return new UiAutomatorResult(xmlDumpFile, model, screenshot);
176 public final Image screenshot; field in class:UiAutomatorHelper.UiAutomatorResult
181 screenshot = s;
  /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...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/
HierarchyViewerDirector.java 253 executeInBackground("Refreshing pixel perfect screenshot", new Runnable() {
305 final RawImage screenshot = device.getScreenshot(); local
306 if (screenshot == null) {
317 new ImageData(screenshot.width, screenshot.height, screenshot.bpp,
318 new PaletteData(screenshot.getRedMask(), screenshot
319 .getGreenMask(), screenshot.getBlueMask()), 1,
320 screenshot.data)
    [all...]
  /external/webkit/Tools/QtTestBrowser/
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/view/
Surface.java 481 * Like {@link #screenshot(int, int, int, int)} but includes all
482 * Surfaces in the screenshot.
486 public static Bitmap screenshot(int width, int height) { method in class:Surface
500 * include in the screenshot.
502 * include in the screenshot.
508 public static Bitmap screenshot(int width, int height, int minLayer, int maxLayer) { method in class:Surface
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 127 void screenshot();
2480 void tst_QWebPage::screenshot() function in class:tst_QWebPage
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 1830 Bitmap screenshot = Controller.createScreenshot(mMainView, local
    [all...]

Completed in 395 milliseconds