HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 51 - 75 of 2524) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/gtk/status_icons/
status_tray_gtk.cc 17 const gfx::ImageSkia& image,
20 icon->SetImage(image);
  /external/chromium_org/ppapi/cpp/
mouse_cursor.cc 22 const ImageData& image,
27 instance.pp_instance(), type, image.pp_resource(),
  /external/chromium_org/ppapi/thunk/
ppb_mouse_cursor_thunk.cc 22 PP_Resource image,
28 return enter.functions()->SetCursor(instance, type, image, hot_spot);
  /external/oprofile/libpp/
filename_spec.cpp 30 : image("*"), lib_image("*")
45 return image == rhs.image && lib_image == rhs.lib_image;
48 // lib_name if present or the image name
55 return rhs.image == binary;
64 image = parsed.image;
79 return image != lib_image;
80 return cg_image != image || cg_image != lib_image;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.h 60 void h264bsdWriteMacroblock(image_t *image, u8 *data);
63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_screen.c 209 __DRIimage *image; local
215 image = CALLOC(sizeof *image);
216 if (image == NULL)
221 image->format = MESA_FORMAT_RGB565;
222 image->internal_format = GL_RGB;
223 image->data_type = GL_UNSIGNED_BYTE;
226 image->format = MESA_FORMAT_XRGB8888;
227 image->internal_format = GL_RGB;
228 image->data_type = GL_UNSIGNED_BYTE
265 __DRIimage *image; local
310 __DRIimage *image; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_screen.c 209 __DRIimage *image; local
215 image = CALLOC(sizeof *image);
216 if (image == NULL)
221 image->format = MESA_FORMAT_RGB565;
222 image->internal_format = GL_RGB;
223 image->data_type = GL_UNSIGNED_BYTE;
226 image->format = MESA_FORMAT_XRGB8888;
227 image->internal_format = GL_RGB;
228 image->data_type = GL_UNSIGNED_BYTE
265 __DRIimage *image; local
310 __DRIimage *image; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebImageSkia.cpp 36 #include "platform/graphics/Image.h"
38 #include "platform/image-decoders/ImageDecoder.h"
89 RefPtr<NativeImageSkia> image = frame->asNewNativeImage();
90 if (!image)
93 return WebImage(image->bitmap());
126 RefPtr<NativeImageSkia> image = frame->asNewNativeImage(); local
127 if (image && image->isDataComplete())
128 frames.append(WebImage(image->bitmap()));
139 void WebImage::assign(const WebImage& image)
    [all...]
  /external/opencv/cvaux/src/
extendededges.cpp 46 //void icvCutContour( CvSeq* current, IplImage* image );
47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
50 //create lists of segments of all contours from image
51 CvSeq* cvExtractSingleEdges( IplImage* image, //bw image - it's content will be destroyed by cvFindContours
56 cvFindContours( image, tmp_storage, &contours, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_NONE );
57 cvZero( image );
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
121 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image /*tmp image*/)
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkPDFRasterizer.cpp 15 #include <poppler-image.h>
38 poppler::image image = renderer.render_page(page.get()); local
40 if (!image.is_valid() || image.format() != poppler::image::format_argb32) {
44 int width = image.width(), height = image.height();
45 size_t rowSize = image.bytes_per_row();
46 char *imgData = image.data()
    [all...]
  /external/skia/src/utils/
SkPDFRasterizer.cpp 15 #include <poppler-image.h>
38 poppler::image image = renderer.render_page(page.get()); local
40 if (!image.is_valid() || image.format() != poppler::image::format_argb32) {
44 int width = image.width(), height = image.height();
45 size_t rowSize = image.bytes_per_row();
46 char *imgData = image.data()
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
media_controls.css 119 background-image: linear-gradient(#c3c3c3, #d9d9d9);
126 background-image: none;
195 background-image: -webkit-image-set(
201 background-image: -webkit-image-set(
207 background-image: -webkit-image-set(
213 background-image: -webkit-image-set
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_screen.c 250 __DRIimage *image; local
252 image = CALLOC(sizeof *image);
253 if (image == NULL)
256 image->dri_format = dri_format;
257 image->offset = 0;
261 image->format = MESA_FORMAT_RGB565;
264 image->format = MESA_FORMAT_XRGB8888;
267 image->format = MESA_FORMAT_ARGB8888;
270 image->format = MESA_FORMAT_RGBA8888_REV
301 __DRIimage *image; local
324 __DRIimage *image; local
384 __DRIimage *image; local
442 __DRIimage *image; local
486 __DRIimage *image; local
525 __DRIimage *image; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_screen.c 250 __DRIimage *image; local
252 image = CALLOC(sizeof *image);
253 if (image == NULL)
256 image->dri_format = dri_format;
257 image->offset = 0;
261 image->format = MESA_FORMAT_RGB565;
264 image->format = MESA_FORMAT_XRGB8888;
267 image->format = MESA_FORMAT_ARGB8888;
270 image->format = MESA_FORMAT_RGBA8888_REV
301 __DRIimage *image; local
324 __DRIimage *image; local
384 __DRIimage *image; local
442 __DRIimage *image; local
486 __DRIimage *image; local
525 __DRIimage *image; local
    [all...]
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer_unittest.cc 11 #include "ui/gfx/image/image_skia_rep.h"
44 gfx::ImageSkia image = gfx::ImageSkia::CreateFrom1xBitmap(src); local
45 return image;
48 bool IsColor(const gfx::ImageSkia& image, const uint32_t expect) {
49 EXPECT_EQ(image.width(), kTargetWidth);
50 EXPECT_EQ(image.height(), kTargetHeight);
51 const SkBitmap* image_bitmap = image.bitmap();
69 gfx::ImageSkia Resize(const gfx::ImageSkia& image,
73 resizer.reset(new WallpaperResizer(image, target_size, layout));
78 return resizer->image();
126 gfx::ImageSkia image = CreateTestImage( local
146 gfx::ImageSkia image = CreateTestImage( local
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_icon_painter.cc 11 #include "ui/gfx/image/image_skia.h"
114 gfx::ImageSkia* image = theme_provider->GetImageSkiaNamed( local
117 canvas->DrawImageInt(*image,
118 center.x() - image->width() / 2,
119 center.y() - image->height() / 2);
124 gfx::ImageSkia* image = theme_provider->GetImageSkiaNamed(IDR_TOOLS_BAR); local
125 int x = center.x() - image->width() / 2;
126 int y = center.y() - image->height() * kBarCount / 2;
128 canvas->DrawImageInt(*image, x, y);
129 y += image->height()
136 gfx::ImageSkia* image = local
    [all...]
  /external/chromium_org/ui/webui/resources/css/apps/
topbutton_bar.css 15 background-image: none;
40 background-image: -webkit-image-set(
46 background-image: -webkit-image-set(
52 background-image: -webkit-image-set(
58 background-image: -webkit-image-set(
  /external/pixman/pixman/
pixman-conical-gradient.c 56 pixman_image_t *image = iter->image; local
62 gradient_t *gradient = (gradient_t *)image;
63 conical_gradient_t *conical = (conical_gradient_t *)image;
74 _pixman_gradient_walker_init (&walker, gradient, image->common.repeat);
76 if (image->common.transform)
85 if (!pixman_transform_point_3d (image->common.transform, &v))
88 cx = image->common.transform->matrix[0][0] / 65536.;
89 cy = image->common.transform->matrix[1][0] / 65536.;
90 cz = image->common.transform->matrix[2][0] / 65536.
189 pixman_image_t *image = _pixman_image_allocate (); local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_uninstall_dialog.cc 37 ExtensionResource image = local
40 // Load the image asynchronously. The response will be sent to OnImageLoaded.
41 tracker_.LoadImage(extension_, image,
46 void ExtensionUninstallDialog::SetIcon(SkBitmap* image) {
47 if (image)
48 icon_ = *image;
62 void ExtensionUninstallDialog::OnImageLoaded(SkBitmap* image,
65 SetIcon(image);

Completed in 819 milliseconds

1 23 4 5 6 7 8 91011>>