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

1 2 3

  /frameworks/native/cmds/screenshot/
Android.mk 4 LOCAL_SRC_FILES := screenshot.c
6 LOCAL_MODULE := screenshot
  /prebuilts/devtools/tools/lib/
screenshot2.jar 
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
ScreenshotStubActivity.java 16 package com.android.systemui.screenshot;
  /frameworks/base/cmds/screencap/
screencap.cpp 142 ScreenshotClient screenshot; local
144 if (display != NULL && screenshot.update(display) == NO_ERROR) {
145 base = screenshot.getPixels();
146 w = screenshot.getWidth();
147 h = screenshot.getHeight();
148 s = screenshot.getStride();
149 f = screenshot.getFormat();
150 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_org/chrome/browser/extensions/api/feedback_private/
feedback_service.cc 19 ScreenshotDataPtr screenshot(new ScreenshotData);
20 std::copy(image->begin(), image->end(), screenshot->begin());
21 return screenshot;
  /external/chromium_org/tools/telemetry/telemetry/core/
tab_unittest.py 77 screenshot = self._tab.Screenshot(5)
78 assert screenshot
79 screenshot.GetPixelColor(0 * pixel_ratio, 0 * pixel_ratio).AssertIsRGB(
81 screenshot.GetPixelColor(31 * pixel_ratio, 31 * pixel_ratio).AssertIsRGB(
83 screenshot.GetPixelColor(32 * pixel_ratio, 32 * pixel_ratio).AssertIsRGB(
  /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...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/screenshot/
background.js 5 // To make sure we can uniquely identify each screenshot tab, add an id as a
6 // query param to the url that displays the screenshot.
8 // because the event page will stay open as long as any screenshot tabs are
15 var viewTabUrl = chrome.extension.getURL('screenshot.html?id=' + id++)
33 // the screenshot. The url of the tab which will display the
34 // screenshot includes a query parameter with a unique id, which
50 // Listen for a click on the camera icon. On that click, take a screenshot.
  /external/chromium_org/content/browser/web_contents/
web_contents_screenshot_manager.cc 156 scoped_refptr<ScreenshotData> screenshot = new ScreenshotData(); local
157 screenshot->EncodeScreenshot(
162 screenshot));
171 if (entry->screenshot().get())
179 scoped_refptr<ScreenshotData> screenshot) {
191 entry->SetScreenshotPNGData(screenshot->data());
200 if (!entry->screenshot().get())
218 ->screenshot().get()) {
227 // when taking the screenshot failed for some reason). So there may be a state
229 // any screenshot. In such cases, keep the screenshots for |kMaxScreenshots
    [all...]
web_contents_view_aura_browsertest.cc 31 // This class keeps track of the RenderViewHost whose screenshot was captured.
326 // Tests that the page has has a screenshot when navigation happens:
353 EXPECT_FALSE(entry->screenshot().get());
357 EXPECT_TRUE(entry->screenshot().get());
361 EXPECT_TRUE(entry->screenshot().get());
363 // Navigate again. Index 2 should now have a screenshot.
370 EXPECT_TRUE(entry->screenshot().get());
374 EXPECT_FALSE(entry->screenshot().get());
378 // index 3 to index 2, and index 3 should have a screenshot.
395 EXPECT_TRUE(entry->screenshot().get())
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
InstrumentationDriver.java 84 private Bitmap screenshot; field in class:InstrumentationDriver.ScreenshotRunnable
94 screenshot = Bitmap.createBitmap(rootView.getDrawingCache());
103 return screenshotRunnable.screenshot;
  /external/chromium_org/chrome/renderer/resources/extensions/
feedback_private_custom_bindings.js 21 if (feedbackInfo.screenshot)
23 feedbackPrivateNatives.GetBlobUrl(feedbackInfo.screenshot);
  /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/uiautomator/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();
  /external/chromium_org/chrome/browser/resources/
feedback.js 68 * @param {string} divId The id of the div to add a screenshot to.
69 * @param {string} screenshot The URL of the screenshot being added.
71 function addScreenshot(divId, screenshot) {
87 thumbnail.src = screenshot + '?' + Date.now();
103 $('screenshot-row').hidden = false;
170 if ($('screenshot-checkbox').checked && selectedThumbnailId)
253 * Change the type of screenshot we're showing to the user from
254 * the current screenshot to saved screenshots
257 $('screenshot-label-current').hidden = true
    [all...]
  /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/droiddriver/src/com/google/android/droiddriver/base/
AbstractDroidDriver.java 138 Bitmap screenshot = takeScreenshot(); local
139 if (screenshot == null) {
145 screenshot.compress(format, quality, bos);
158 screenshot.recycle();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
TakeScreenshotService.java 17 package com.android.systemui.screenshot;
  /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 98 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_org/chrome/browser/feedback/
feedback_util.cc 308 userfeedback::PostedScreenshot screenshot; local
309 screenshot.set_mime_type(kPngMimeType);
310 // Set the dimensions of the screenshot
315 *(screenshot.mutable_dimensions()) = dimensions;
319 screenshot.set_binary_content(std::string(image_data, image_data_size));
321 // Set the screenshot object in feedback
322 *(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...]

Completed in 970 milliseconds

1 2 3