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

<<11121314151617181920>>

  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Shadows.java 17 package com.android.rs.image;
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/
Android.mk 12 $(LOCAL_PATH)/../../../mm-image-codec/qexif \
13 $(LOCAL_PATH)/../../../mm-image-codec/qomx_core
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 163 IImage image = sublist.getImageForUri(uri); local
164 if (image != null) return image;
170 * Modify the skip list when an image is deleted by finding
188 private boolean removeImage(IImage image, int index) {
189 IImageList list = image.getContainer();
190 if (list != null && list.removeImage(image)) {
197 public boolean removeImage(IImage image) {
198 return removeImage(image, getImageIndex(image));
202 IImage image = getImageAt(index); local
    [all...]
BaseImageList.java 60 // TODO: We need to clear the cache because we may "reopen" the image
61 // list. After we implement the image list state, we can remove this
84 // does our uri already have an id (single image query)?
133 public boolean removeImage(IImage image) {
135 if (mContentResolver.delete(image.fullSizeImageUri(), null, null) > 0) {
136 ((BaseImage) image).onRemove();
175 // Sometimes, the URI of an image contains a query string with key
176 // "bucketId" inorder to restore the image list. However, the query
203 BaseImage image = mCache.get(i); local
204 if (image == null)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
ImUtil.h 29 register XImage *image);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
ImUtil.h 29 register XImage *image);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
ImUtil.h 29 register XImage *image);
  /external/chromium/chrome/browser/webdata/
web_apps_table.cc 28 "image BLOB, UNIQUE (url, width, height))")) {
52 bool WebAppsTable::SetWebAppImage(const GURL& url, const SkBitmap& image) {
57 "(url, width, height, image) VALUES (?, ?, ?, ?)"));
62 gfx::PNGCodec::EncodeBGRASkBitmap(image, false, &image_data);
65 s.BindInt(1, image.width());
66 s.BindInt(2, image.height());
74 "SELECT image FROM web_app_icons WHERE url=?"));
81 SkBitmap image; local
86 col_bytes, &image)) {
87 images->push_back(image);
    [all...]
  /external/chromium_org/base/debug/
profiler.cc 115 base::win::PEImage image(this_module);
117 // Check to be sure our image is structured as we'd expect.
118 DCHECK(image.VerifyMagic());
120 // Syzygy-instrumented binaries contain a PE image section named ".thunks",
121 // and all Syzygy-modified binaries contain the ".syzygy" image section.
122 // This is a very fast check, as it only looks at the image header.
123 if ((image.GetImageSectionHeaderByName(".thunks") != NULL) &&
124 (image.GetImageSectionHeaderByName(".syzygy") != NULL)) {
144 const base::win::PEImage &image, const char* module_name,
186 base::win::PEImage image(this_module)
    [all...]
  /external/chromium_org/chrome/browser/webdata/
web_apps_table.cc 55 "image BLOB, UNIQUE (url, width, height))")) {
79 bool WebAppsTable::SetWebAppImage(const GURL& url, const SkBitmap& image) {
84 "(url, width, height, image) VALUES (?, ?, ?, ?)"));
86 gfx::PNGCodec::EncodeBGRASkBitmap(image, false, &image_data);
88 s.BindInt(1, image.width());
89 s.BindInt(2, image.height());
98 "SELECT image FROM web_app_icons WHERE url=?"));
102 SkBitmap image; local
107 col_bytes, &image)) {
108 images->push_back(image);
    [all...]
  /external/chromium_org/ppapi/examples/font/
simple_font.cc 30 pp::ImageData image(this, PP_IMAGEDATAFORMAT_BGRA_PREMUL, last_size_, true);
41 font.DrawTextAt(&image,
52 &image, DescribeFont(default_font, "Default font"),
61 &image, DescribeFont(serif_font, "Serif font"),
70 &image, DescribeFont(sans_serif_font, "Sans serif font"),
79 &image, DescribeFont(monospace_font, "Monospace font"),
84 graphics.PaintImageData(image, pp::Point(0, 0));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
BooleanObjectPropertyEditor.java 19 import org.eclipse.swt.graphics.Image;
29 private static final Image m_nullImage = DesignerPlugin.getImage("properties/BooleanNull.png");
30 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png");
31 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png");
52 Image image = booleanValue ? m_trueImage : m_falseImage; local
54 paint(gc, x, y, width, height, text, image);
57 Image image = m_nullImage; local
59 paint(gc, x, y, width, height, text, image);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
IfElseFilterTest.java 51 FrameImage2D image = local
58 // Image of legs
60 // Image of a face
63 image.setBitmap(imageBitmap);
64 injectInputFrame("falseResult", image);
82 FrameImage2D image = local
89 // Image of legs
91 // Image of a face
94 image.setBitmap(imageBitmap);
95 injectInputFrame("falseResult", image);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 23 import org.eclipse.swt.graphics.Image;
39 private static final Image mTrueImage = DesignerPlugin.getImage("properties/true.png");
40 private static final Image mFalseImage = DesignerPlugin.getImage("properties/false.png");
41 private static final Image mNullImage =
43 private static final Image mUnknownImage =
56 Image image; local
58 image = mTrueImage;
60 image = mFalseImage;
62 image = mNullImage
    [all...]
  /external/ceres-solver/examples/
denoising.cc 55 DEFINE_string(input, "", "File to which the output image should be written");
57 DEFINE_string(output, "", "File to which the output image should be written");
90 const PGMImage<double>& image,
96 for (unsigned index = 0; index < image.NumPixels(); ++index) {
99 image.PixelFromLinearIndex(index));
114 // Add FoE regularization for each patch in the image.
115 for (int x = 0; x < image.width() - (foe.Size() - 1); ++x) {
116 for (int y = 0; y < image.height() - (foe.Size() - 1); ++y) {
176 usage("This program denoises an image using Ceres. Sample usage:\n");
178 usage += " --input=<noisy image PGM file> --foe_file=<FoE file name>"
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
opentabs.css 68 -webkit-mask-image: -webkit-gradient(
82 -webkit-mask-image: -webkit-gradient(
146 background-image: url(images/disclosure_open_mdpi.png);
154 background-image: url(images/disclosure_closed_mdpi.png);
162 background-image: url(../../../../ui/webui/resources/images/laptop.png);
170 background-image: url(../../../../ui/webui/resources/images/tablet.png);
178 background-image: url(../../../../ui/webui/resources/images/phone.png);
186 background-image: url(images/sent_mdpi.png);
195 background-image: url(images/disclosure_open_hdpi.png);
198 background-image: url(images/disclosure_closed_hdpi.png)
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 47 struct opd_image * image; local
75 image = opd_get_image(cp, image_name, 0, proc->tid, proc->tgid);
76 if (!image)
79 opd_add_mapping(proc, image, start, offset, end);
117 verbprintf(vmisc, "image name %s for pid %u %u\n", image_name, proc->tid, proc->tgid);
128 /* dae assume than the first map added is the primary image name, this
130 * the primary image name
134 if (!strcmp(map->image->name, image_name)) {
136 fprintf(stderr, "swap map for image %s from %s to %s\n", image_name, proc->name, map->image->name)
152 struct opd_image * image = opd_get_image(image_name, local
    [all...]
  /external/pixman/demos/
gtk-utils.c 10 pixman_image_t *image; local
21 image = NULL;
64 image = pixman_image_create_bits (
69 return image;
128 show_image (pixman_image_t *image)
144 width = pixman_image_get_width (image);
145 height = pixman_image_get_height (image);
149 format = pixman_image_get_format (image);
151 /* We always display the image as if it contains sRGB data. That
152 * means that no conversion should take place when the image
    [all...]
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsUtils.java 25 import android.media.Image;
26 import android.media.Image.Plane;
75 // A single output image callback is made, with either the JPEG or the YUV data.
98 public static byte[] getDataFromImage(Image image)
100 int format = image.getFormat();
101 int width = image.getWidth();
102 int height = image.getHeight();
106 // Read image data
107 Plane[] planes = image.getPlanes()
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
gallery.css 43 background-image: -webkit-image-set(
61 /* Image container and canvas elements */
63 .gallery .image-container {
70 .gallery[tools] .image-container[cursor='default'] {
74 .gallery[tools] .image-container[cursor='move'] {
75 cursor: -webkit-image-set(
80 .gallery[tools] .image-container[cursor='crop'] {
81 cursor: -webkit-image-set(
86 .gallery[tools] .image-container[cursor='n-resize']
    [all...]
  /external/chromium_org/chrome/browser/ui/android/
navigation_popup.cc 23 #include "ui/gfx/image/image.h"
64 gfx::Image image(image_result.image);
65 if (image.IsEmpty()) {
67 image = rb.GetImageNamed(IDR_DEFAULT_FAVICON);
82 gfx::ConvertToJavaBitmap(image.ToSkBitmap()).obj());
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_image.c 29 /* Work back from the specified level of the image to the baselevel and create a
60 /* If this image disrespects BaseLevel, allocate from level zero.
68 /* Figure out image dimensions at start level. */
134 struct gl_texture_image *image,
138 struct intel_texture_image *intelImage = intel_texture_image(image);
152 DBG("%s: image transfer\n", __FUNCTION__);
163 ctx->Driver.AllocTextureImageBuffer(ctx, image);
178 src_stride = image->Width;
192 0, 0, dst_x, dst_y, image->Width, image->Height
338 __DRIimage *image; local
    [all...]
  /external/chromium_org/ui/base/resource/
resource_bundle_gtk.cc 16 #include "ui/gfx/image/image.h"
25 // Convert the raw image data into a GdkPixbuf. The GdkPixbuf that is returned
73 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
77 // Check to see if the image is already in the cache.
84 gfx::Image image; local
86 image = delegate_->GetNativeImageNamed(resource_id, rtl);
88 if (image.IsEmpty()) {
99 image = gfx::Image(pixbuf); // Takes ownership
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_image.c 29 /* Work back from the specified level of the image to the baselevel and create a
60 /* If this image disrespects BaseLevel, allocate from level zero.
68 /* Figure out image dimensions at start level. */
134 struct gl_texture_image *image,
138 struct intel_texture_image *intelImage = intel_texture_image(image);
152 DBG("%s: image transfer\n", __FUNCTION__);
163 ctx->Driver.AllocTextureImageBuffer(ctx, image);
178 src_stride = image->Width;
192 0, 0, dst_x, dst_y, image->Width, image->Height
338 __DRIimage *image; local
    [all...]
  /external/pixman/pixman/
pixman-radial-gradient.c 242 pixman_image_t *image = iter->image; local
248 gradient_t *gradient = (gradient_t *)image;
249 radial_gradient_t *radial = (radial_gradient_t *)image;
259 _pixman_gradient_walker_init (&walker, gradient, image->common.repeat);
261 if (image->common.transform)
263 if (!pixman_transform_point_3d (image->common.transform, &v))
266 unit.vector[0] = image->common.transform->matrix[0][0];
267 unit.vector[1] = image->common.transform->matrix[1][0];
268 unit.vector[2] = image->common.transform->matrix[2][0]
431 pixman_image_t *image; local
    [all...]

Completed in 518 milliseconds

<<11121314151617181920>>