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

<<11121314151617181920>>

  /pdk/apps/CameraITS/tests/
test_param_exposure_time.py 15 import its.image namespace
49 img = its.image.convert_capture_to_rgb_image(cap)
50 its.image.write_image(
52 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
53 rgb_means = its.image.compute_image_means(tile)
test_param_sensitivity.py 15 import its.image namespace
49 img = its.image.convert_capture_to_rgb_image(cap)
50 its.image.write_image(
52 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
53 rgb_means = its.image.compute_image_means(tile)
test_blc_lsc.py 15 import its.image namespace
76 img = its.image.convert_capture_to_rgb_image(cap)
78 tile_center = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
79 rgb_means = its.image.compute_image_means(tile_center)
84 tile_corner = its.image.get_image_patch(img, 0.0, 0.0, 0.1, 0.1)
85 rgb_means = its.image.compute_image_means(tile_corner)
test_linearity.py 15 import its.image namespace
21 import Image
72 img = its.image.convert_capture_to_rgb_image(cap)
73 its.image.write_image(
75 img = its.image.apply_lut_to_image(img, inv_gamma_lut[1::2] * LM1)
76 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
77 rgb_means = its.image.compute_image_means(tile)
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
common.css 37 background-image: -webkit-image-set(
49 background-image: -webkit-image-set(
56 background-image: -webkit-image-set(
81 background: -webkit-image-set(
103 background: -webkit-image-set(
152 background-image: -webkit-image-set
    [all...]
  /external/chromium_org/content/renderer/
image_loading_helper.cc 31 // Proportionally resizes the |image| to fit in a box of size
33 SkBitmap ResizeImage(const SkBitmap& image, uint32_t max_image_size) {
35 return image;
36 uint32_t max_dimension = std::max(image.width(), image.height());
38 return image;
39 // Proportionally resize the minimal image to fit in a box of size
42 image,
44 static_cast<uint64_t>(image.width()) * max_image_size / max_dimension,
45 static_cast<uint64_t>(image.height()) * max_image_size / max_dimension)
74 const SkBitmap& image = *it; local
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 32 struct opd_image * image; member in struct:opd_module
84 module->image = NULL;
137 * to this file which allows determination of the module image
143 * Currently the image file "objectfile" is stored, and details of
229 mod->image = opd_get_kernel_image(filename, NULL, 0, 0);
230 mod->image->ref_count++;
319 * caller must check than the module image is valid
366 if (module->image != NULL) {
368 opd_put_image_sample(module->image,
372 verbprintf(vmodule, "No image for sampled module %s\n"
414 struct opd_image * image; local
    [all...]
  /external/oprofile/libpp/
locate_images.cpp 133 string image = op_realpath(archive_path + image_name); local
134 if (op_file_readable(image)) {
136 return fixup ? image : image_name;
150 string image = op_realpath(root_path + image_name); local
151 if (op_file_readable(image)) {
153 return fixup ? image : image_name;
166 string const image = locate_image(image_name, error, fixup); local
168 return image;
170 string const base = op_basename(image);
190 // library in the image path. Choose the first one found instead of issuing
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 431 if (t.image.charAt(t.image.length() - 1) != '.' || t.kind == AddressListParserConstants.QUOTEDSTRING)
458 if (t.image.charAt(t.image.length() - 1) != '.')
513 < <QUOTEDPAIR>> { image.deleteCharAt(image.length() - 2); }
520 < DOMAINLITERAL: "]" > { matchedToken.image = image.toString(); }: DEFAULT
542 < <QUOTEDPAIR>> { image.deleteCharAt(image.length() - 2); }
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java 631 StringBuffer image; field in class:ContentTypeParserTokenManager
676 t.image = (im == null) ? input_stream.GetImage() : im;
712 image = null;
811 if (image == null)
812 image = new StringBuffer();
813 image.append(input_stream.GetSuffix(jjimageLen));
815 image.deleteCharAt(image.length() - 2);
818 if (image == null)
819 image = new StringBuffer()
    [all...]
  /external/chromium_org/ui/webui/resources/css/
tree.css 27 background-image: -webkit-canvas(tree-triangle);
46 background-image: -webkit-canvas(tree-triangle);
76 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8),
118 background-image: -webkit-image-set(
124 background-image: -webkit-image-set(
131 background-image: none !important;
136 background-image: none;
141 background-image: -webkit-image-set
    [all...]
expandable_bubble.css 6 -webkit-border-image: url('chrome://theme/IDR_APP_NOTIFICATION_SMALL_BUBBLE')
75 background-image: -webkit-image-set(
81 background-image: -webkit-image-set(
87 background-image: -webkit-image-set(
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CompressedTextureActivity.java 115 Buffer image = createImage(width, height); local
116 ETC1Util.ETC1Texture etc1Texture = ETC1Util.compressTexture(image, width, height, 3, 3 * width);
136 ByteBuffer image = ByteBuffer.allocateDirect(height * stride) local
146 image.position(stride*y+x*3);
147 image.put(red);
148 image.put(green);
149 image.put(blue);
152 image.position(0);
153 return image;
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/css/
wallpaper_manager.css 25 .image-picker,
100 background-image: url('../images/ui/close-white.png');
104 background-image: url('../images/ui/close-white-hover.png');
127 .image-picker {
143 .image-picker .spacer {
147 .image-picker > * {
154 .image-picker [role=listitem] {
162 .image-picker [role=listitem]:hover {
167 .image-picker .check {
168 background-image: url('../images/ui/check.png')
    [all...]
  /external/chromium_org/ppapi/examples/2d/
graphics_2d_example.c 64 PP_Resource image, graphics; local
69 /* Create image data to paint into. */
70 image = g_image_data_interface->Create(
72 if (!image)
74 g_image_data_interface->Describe(image, &image_desc);
76 /* Fill the image with blue. */
77 image_data = (uint32_t*)g_image_data_interface->Map(image);
79 g_core_interface->ReleaseResource(image);
86 /* Create the graphics 2d and paint the image to it. */
89 g_core_interface->ReleaseResource(image);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
pixelzoomer.js 63 container.className = 'zoom-image-container';
73 imageContainer.className = 'scaled-image-container';
75 var image = new Image();
76 image.src = url;
77 image.style.width = kZoomedResultWidth + 'px';
78 image.style.height = kZoomedResultHeight + 'px';
79 image.style.border = '1px solid black';
80 imageContainer.appendChild(image);
104 var image = imageContainer.querySelector('img')
    [all...]
  /external/chromium_org/cc/scheduler/
texture_uploader.cc 131 void TextureUploader::Upload(const uint8* image,
147 UploadWithTexImageETC1(image, size);
150 image, image_rect, source_rect, dest_offset, format);
175 void TextureUploader::UploadWithTexSubImage(const uint8* image,
182 // Early-out if this is a no-op, and assert that |image| be valid if this is
186 DCHECK(image);
188 // Offset from image-rect to source-rect.
200 pixel_source = &image[image_rect.width() * bytes_per_pixel * offset.y()];
211 &image[bytes_per_pixel *
229 void TextureUploader::UploadWithMapTexSubImage(const uint8* image,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGImage.cpp 62 SVGImageElement* image = toSVGImageElement(element()); local
66 SVGLengthContext lengthContext(image);
67 m_objectBoundingBox = FloatRect(image->xCurrentValue().value(lengthContext), image->yCurrentValue().value(lengthContext), image->widthCurrentValue().value(lengthContext), image->heightCurrentValue().value(lengthContext));
70 // by setting the image's container size to its intrinsic size.
72 if (image->preserveAspectRatioCurrentValue().align() == SVGPreserveAspectRatio::SVG_PRESERVEASPECTRATIO_NONE) {
160 RefPtr<Image> image = m_imageResource->image() local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.c 65 Write one macroblock into the image. Both luma and chroma
73 image pointer to the image where the macroblock will be written
80 void h264bsdWriteMacroblock(image_t *image, u8 *data)
93 ASSERT(image);
97 width = image->width;
101 lum = (u32*)image->luma;
102 cb = (u32*)image->cb;
103 cr = (u32*)image->cr;
151 Write one macroblock into the image. Prediction for the macrobloc
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
chrome_html_unittest.py 27 return _NEW_LINE.sub('\n', text).replace('data:image/x-png;',
28 'data:image/png;')
35 '''Tests inlined image file resources with available high DPI assets.'''
51 .image {
73 .image {
74 background: -webkit-image-set(url('data:image/png;base64,UE5HIERBVEE=') 1x, url('data:image/png;base64,MS40eCBQTkcgREFUQQ==') 1.4x, url('data:image/png;base64,MS44eCBQTkcgREFUQQ==') 1.8x);
86 '''Tests inlined image file resources with available high DPI assets o
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
user_manager.h 53 // The image for this user.
54 void set_image(const SkBitmap& image) { image_ = image; }
55 const SkBitmap& image() const { return image_; } function in class:chromeos::UserManager::User
96 // Sets image for logged-in user and sends LOGIN_USER_IMAGE_CHANGED
97 // notification about the image changed via NotificationService.
98 void SetLoggedInUserImage(const SkBitmap& image);
100 // Tries to load logged-in user image from disk and sets it for the user.
103 // Saves image to file and saves image path in local state preferences
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
background.js 11 // The srcUrl property is only available for image elements.
23 "title" : "Get image info",
25 "contexts" : ["image"],
  /external/chromium_org/ui/views/controls/button/
image_button.h 11 #include "ui/gfx/image/image_skia.h"
18 // An image button.
43 // Returns the image for a given |state|.
46 // Set the image the button should use for the provided state.
47 virtual void SetImage(ButtonState state, const gfx::ImageSkia* image);
51 const gfx::ImageSkia* image,
54 // Set an |image| to draw on top of the normal / hot / pushed image.
55 // Pass NULL for no image.
56 void SetOverlayImage(const gfx::ImageSkia* image);
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 97 public static final String JPEG_MIME_TYPE = "image/jpeg";
106 public void gettingReadyToOpen(Menu menu, IImage image);
107 public void aboutToCall(MenuItem item, IImage image);
115 public void run(Uri uri, IImage image);
128 public static long getImageFileSize(IImage image) {
129 java.io.InputStream data = image.fullSizeImageData();
174 public static boolean hasLatLngData(IImage image) {
175 ExifInterface exif = getExif(image);
246 private static ExifInterface getExif(IImage image) {
247 if (!JPEG_MIME_TYPE.equals(image.getMimeType()))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
gbm_dri.c 54 dri_lookup_egl_image(__DRIscreen *screen, void *image, void *data)
61 return dri->lookup_image(screen, image, dri->lookup_user_data);
131 { __DRI_IMAGE, 1, offsetof(struct gbm_dri_device, image) },
306 if (bo->image != NULL)
321 if (bo->image != NULL) {
322 dri->image->destroyImage(bo->image);
365 __DRIimage *image; local
369 /* Required for query image WIDTH & HEIGHT */
370 if (dri->image->base.version < 4
    [all...]

Completed in 352 milliseconds

<<11121314151617181920>>