/external/chromium/chrome/browser/ui/views/location_bar/ |
page_action_with_badge_view.cc | 32 const SkBitmap& image = image_view()->GetImage(); local 33 int y = (image.height() + 1) % 2; // Even numbers: 1px padding. Odd: 0px.
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
new_guest_tab_theme.css | 9 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1);
|
new_incognito_tab_theme.css | 9 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1);
|
/external/chromium_org/chrome/browser/status_icons/ |
status_icon.h | 25 // Sets the image associated with this status icon. 26 virtual void SetImage(const gfx::ImageSkia& image) = 0; 28 // Sets the image associated with this status icon when pressed. 29 virtual void SetPressedImage(const gfx::ImageSkia& image) = 0;
|
status_tray.cc | 15 const gfx::ImageSkia& image, 17 StatusIcon* icon = CreatePlatformStatusIcon(type, image, tool_tip);
|
status_tray.h | 41 const gfx::ImageSkia& image, 55 const gfx::ImageSkia& image,
|
/external/chromium_org/chrome/installer/test/ |
pe_image_resources.cc | 26 // Recursive function for enumerating entries in an image's resource segment. 29 const base::win::PEImage& image, const uint8* tree_base, DWORD tree_size, 79 success = EnumResourcesWorker(image, tree_base, tree_size, 87 image.RVAToAddr(data_entry->OffsetToData)) + data_entry->Size <= 92 reinterpret_cast<uint8*>(image.RVAToAddr(data_entry->OffsetToData)), 110 bool EnumResources(const base::win::PEImage& image, EnumResource_Fn callback, 113 image.GetImageDirectoryEntrySize(IMAGE_DIRECTORY_ENTRY_RESOURCE); 116 image, 118 image.GetImageDirectoryEntryAddr(IMAGE_DIRECTORY_ENTRY_RESOURCE)),
|
/external/chromium_org/chrome/test/functional/ispy/server/ |
image_handler.py | 5 """Request handler to display an image from Google Cloud Storage.""" 25 file_path: A path to an image resource in Google Cloud Storage. 33 image = bucket.DownloadFile(file_path) 37 self.response.headers['Content-Type'] = 'image/png' 38 self.response.out.write(image)
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
CanvasPattern.cpp | 60 CanvasPattern::CanvasPattern(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean) 61 : m_pattern(Pattern::create(image, repeatX, repeatY))
|
CanvasPattern.h | 38 class Image; 44 static PassRefPtr<CanvasPattern> create(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean) 46 return adoptRef(new CanvasPattern(image, repeatX, repeatY, originClean)); 54 CanvasPattern(PassRefPtr<Image>, bool repeatX, bool repeatY, bool originClean);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/ |
SVGImageCache.h | 25 #include "platform/graphics/Image.h" 44 static PassOwnPtr<SVGImageCache> create(SVGImage* image) 46 return adoptPtr(new SVGImageCache(image)); 54 Image* imageForRenderer(const RenderObject*);
|
/external/chromium_org/ui/gfx/image/ |
image_skia_util_mac.h | 28 GFX_EXPORT gfx::ImageSkia ImageSkiaFromNSImage(NSImage* image); 31 GFX_EXPORT gfx::ImageSkia ImageSkiaFromResizedNSImage(NSImage* image,
|
/external/opencv/cvaux/src/ |
cvbgfg_codebook.cpp | 93 CvMat stub, *image = cvGetMat( _image, &stub ); local 100 CV_ASSERT( model && CV_MAT_TYPE(image->type) == CV_8UC3 && 101 (!mask || CV_IS_MASK_ARR(mask) && CV_ARE_SIZES_EQ(image, mask)) ); 105 roi.width = image->cols; 106 roi.height = image->rows; 109 CV_ASSERT( (unsigned)roi.x < (unsigned)image->cols && 110 (unsigned)roi.y < (unsigned)image->rows && 112 roi.x + roi.width <= image->cols && 113 roi.y + roi.height <= image->rows ); 115 if( image->cols != model->size.width || image->rows != model->size.height 235 CvMat stub, *image = cvGetMat( _image, &stub ); local [all...] |
/external/oprofile/daemon/liblegacy/ |
opd_mapping.h | 26 /** next mapping for this image */ 28 /** owning image */ 29 struct opd_image * image; member in struct:opd_map 63 * @param image mapped image pointer 71 void opd_add_mapping(struct opd_proc * proc, struct opd_image * image, 103 * for the relevant binary image.
|
/external/pixman/demos/ |
gtk-utils.h | 7 void show_image (pixman_image_t *image);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/ |
SDL_gsmouse.c | 54 struct ps2_image image; local 69 /* Remove the cursor image from the DMA area */ 109 image = screen_image; 110 image.y += screen->offset / screen->pitch + mouse_y1; 111 image.h = mouse_y2 - mouse_y1; 112 image.ptr = mapped_mem + 113 (image.y - screen_image.y) * screen->pitch; 114 ioctl(console_fd, PS2IOC_LOADIMAGE, &image); 116 /* Need to scale offscreen image to TV output */ 117 if ( image.y > 0 ) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
BitmapShader_Delegate.java | 91 private BitmapShader_Delegate(java.awt.image.BufferedImage image, 93 mJavaPaint = new BitmapShaderPaint(image, tileModeX, tileModeY); 97 private final java.awt.image.BufferedImage mImage; 101 BitmapShaderPaint(java.awt.image.BufferedImage image, 103 mImage = image; 110 java.awt.image.ColorModel colorModel, 141 private final java.awt.image.ColorModel mColorModel; 146 java.awt.image.ColorModel colorModel) 163 java.awt.image.BufferedImage image = new java.awt.image.BufferedImage(w, h, local [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ImageProcessingTestRunner.java | 17 package com.android.rs.image; 19 import com.android.rs.image.ImageProcessingTest; 27 * adb shell am instrument -e iteration <n> -w com.android.rs.image/.ImageProcessingTestRunner
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
AlignFeatures.h | 65 int addFrameRGB(ImageType image); 66 int addFrame(ImageType image);
|
/packages/apps/Camera2/jni/feature_mos/src/mosaic/ |
AlignFeatures.h | 65 int addFrameRGB(ImageType image); 66 int addFrame(ImageType image);
|
/packages/apps/Gallery/src/com/android/camera/ |
ImageLoader.java | 48 public void getBitmap(IImage image, 55 WorkItem w = new WorkItem(image, imageLoadedRunnable, tag); 61 public boolean cancel(final IImage image) { 63 int index = findItem(image); 74 private int findItem(IImage image) { 76 if (mQueue.get(i).mImage == image) { 101 WorkItem(IImage image, LoadedCallback onLoadedRunnable, int tag) { 102 mImage = image; 153 t.setName("image-loader");
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
AlignFeatures.h | 65 int addFrameRGB(ImageType image); 66 int addFrame(ImageType image);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
CommonAction.java | 41 * @param image 43 public CommonAction(String text, ImageDescriptor image) { 44 super(text, image);
|
/external/chromium_org/content/browser/renderer_host/ |
backing_store_gtk.cc | 60 // Destroys the image and the associated shared memory structures. This is a 63 XImage* image, 66 XDestroyImage(image); 394 // ourselves and putting an image on it. 406 XImage* image = XShmCreateImage(display_, static_cast<Visual*>(visual_), local 422 XShmPutImage(display_, pixmap, gc, image, 431 XShmPutImage(display_, pixmap, gc, image, 435 XDestroyImage(image); 440 // image into the format which the X server expects. The 442 XImage image; local 531 XImage* image; local [all...] |
/external/opencv/otherlibs/highgui/ |
loadsave.cpp | 272 * Image Readers & Writers Class * 346 // global image I/O filters 391 IplImage* image = 0; local 451 CV_CALL( image = cvCreateImage( size, type, cn )); 452 matrix = cvGetMat( image, &hdr ); 460 cvReleaseImage( &image ); 473 cvReleaseImage( &image ); 476 return load_as_matrix ? (void*)matrix : (void*)image; 504 CvMat stub, *image; local 510 CV_CALL( image = cvGetMat( arr, &stub )) [all...] |