/external/chromium_org/ui/gfx/image/ |
image_skia_util_mac.mm | 5 #include "ui/gfx/image/image_skia_util_mac.h" 17 #include "ui/gfx/image/image_skia.h" 22 NSImageRep* GetNSImageRepWithPixelSize(NSImage* image, 26 for (NSImageRep* image_rep in [image representations]) { 38 bool IsNSImageEmpty(NSImage* image) { 39 return ([image representations].count == 0); 46 gfx::ImageSkia ImageSkiaFromNSImage(NSImage* image) { 47 return ImageSkiaFromResizedNSImage(image, [image size]); 50 gfx::ImageSkia ImageSkiaFromResizedNSImage(NSImage* image, [all...] |
image_skia_util_ios.mm | 5 #include "ui/gfx/image/image_skia_util_ios.h" 13 #include "ui/gfx/image/image_skia.h" 17 gfx::ImageSkia ImageSkiaFromUIImage(UIImage* image) { 21 image, max_scale); 27 gfx::ImageSkiaRep ImageSkiaRepOfScaleFromUIImage(UIImage* image, float scale) { 28 if (!image) 31 CGSize size = image.size; 34 SkBitmap bitmap(gfx::CGImageToSkBitmap(image.CGImage,
|
/external/oprofile/daemon/liblegacy/ |
opd_sample_files.c | 43 verbprintf(vsfile, "image lru clear\n"); 67 static char * opd_mangle_filename(struct opd_image const * image, int counter, 75 if (image->kernel) 80 values.tid = image->tid; 81 values.tgid = image->tgid; 93 values.image_name = image->name; 94 values.dep_name = separate_lib && image->app_name 95 ? image->app_name : image->name; 103 int opd_open_24_sample_file(struct opd_image * image, int counter, int cpu_nr [all...] |
/external/chromium_org/chrome/browser/ui/tests/ |
ui_gfx_image_unittest.mm | 12 #include "ui/gfx/image/image.h" 13 #include "ui/gfx/image/image_unittest_util.h" 26 gfx::Image image = gfx::Image::CreateFrom1xBitmap( 28 NSImage* ns_image = image.ToNSImage(); 53 gfx::Image image = gfx::Image::CreateFrom1xBitmap [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_org/chrome/browser/resources/chromeos/login/ |
oobe_screen_user_image.css | 6 #user-image { 12 #user-image.loading { 17 #user-image-screen-curtain { 21 #user-image-screen-description { 25 #user-image-grid { 37 #user-image-grid img { 44 #user-image-grid > li { 52 #user-image-grid [selected] { 58 * #user-image-preview can have the following classes: 59 * .default-image: one of the default images is selected (including the gre [all...] |
/external/chromium/chrome/browser/extensions/ |
image_loading_tracker.h | 34 // NOTE: if the image is available already (or the resource is not valid), the 49 // Will be called when the image with the given index has loaded. 50 // The |image| is owned by the tracker, so the observer should make a copy 51 // if they need to access it after this call. |image| can be null if valid 52 // image was not found or it failed to decode. |resource| is the 53 // ExtensionResource where the |image| came from and the |index| represents 54 // the index of the image just loaded (starts at 0 and increments every 56 virtual void OnImageLoaded(SkBitmap* image, 64 // Specify image resource to load. If the loaded image is larger tha [all...] |
/external/chromium_org/chrome/browser/webdata/ |
web_apps_table_unittest.cc | 66 // Add an image. 67 SkBitmap image; local 68 image.setConfig(SkBitmap::kARGB_8888_Config, 16, 16); 69 image.allocPixels(); 70 image.eraseColor(SK_ColorBLACK); 71 ASSERT_TRUE(table_->SetWebAppImage(url, image)); 73 // Make sure we get the image back. 79 // Add another 16x16 image and make sure it replaces the original. 80 image.setConfig(SkBitmap::kARGB_8888_Config, 16, 16); 81 image.allocPixels() [all...] |
/external/chromium_org/ui/views/controls/ |
image_view.h | 8 #include "ui/gfx/image/image_skia.h" 23 // An ImageView can display an image from an ImageSkia. If a size is provided, 24 // the ImageView will resize the provided image to fit if it is too big or will 25 // center the image if smaller. Otherwise, the preferred size matches the 26 // provided image size. 40 // Set the image that should be displayed. 43 // Set the image that should be displayed from a pointer. Reset the image 45 // image. 48 // Returns the image currently displayed or NULL of none is currently set [all...] |
/external/libvpx/libvpx/vpx/ |
vpx_image.h | 13 * \brief Describes the vpx image descriptor and associated operations 34 #define VPX_IMG_FMT_PLANAR 0x100 /**< Image is a planar format */ 36 #define VPX_IMG_FMT_HAS_ALPHA 0x400 /**< Image has an alpha channel component */ 39 /*!\brief List of supported image formats */ 69 /*!\brief Deprecated list of supported image formats 98 /**\brief Image Descriptor */ 100 vpx_img_fmt_t fmt; /**< Image Format */ 102 /* Image storage dimensions */ 103 unsigned int w; /**< Stored image width */ 104 unsigned int h; /**< Stored image height * [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_imageop.py | 80 image, width, height = getimage('test'+os.extsep+'rgb') 82 # Return the selected part of image, which should by width by height 86 newimage = imageop.crop (image, 4, width, height, 0, 0, 1, 1) 88 # Return image scaled to size newwidth by newheight. No interpolation 94 scaleimage = imageop.scale(image, 4, width, height, 1, 1) 96 # Run a vertical low-pass filter over an image. It does so by computing 99 # if the image two vertically-aligned source pixels, hence the name. 102 videoimage = imageop.tovideo (image, 4, width, height) 104 # Convert an rgb image to an 8 bit rgb 107 greyimage = imageop.rgb2rgb8(image, width, height [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_imageop.py | 80 image, width, height = getimage('test'+os.extsep+'rgb') 82 # Return the selected part of image, which should by width by height 86 newimage = imageop.crop (image, 4, width, height, 0, 0, 1, 1) 88 # Return image scaled to size newwidth by newheight. No interpolation 94 scaleimage = imageop.scale(image, 4, width, height, 1, 1) 96 # Run a vertical low-pass filter over an image. It does so by computing 99 # if the image two vertically-aligned source pixels, hence the name. 102 videoimage = imageop.tovideo (image, 4, width, height) 104 # Convert an rgb image to an 8 bit rgb 107 greyimage = imageop.rgb2rgb8(image, width, height [all...] |
/development/samples/training/threadsample/res/values/ |
attrs.xml | 4 <!-- The sibling to hide after the image is downloaded 5 and show when the image is being downloaded -->
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
image_decoration_unittest.mm | 23 scoped_nsobject<NSImage> image([[NSImage alloc] initWithSize:kImageSize]); 25 decoration_.SetImage(image); 26 EXPECT_EQ(decoration_.GetImage(), image); 36 // Decoration with no image is omitted. 41 scoped_nsobject<NSImage> image([[NSImage alloc] initWithSize:kImageSize]); 43 // Decoration takes up the space of the image. 44 decoration_.SetImage(image); 47 // If the image doesn't fit, decoration is omitted.
|
/external/chromium/chrome/browser/ui/tests/ |
ui_gfx_image_unittest.mm | 11 #include "ui/gfx/image.h" 20 gfx::Image image(gfx::test::CreateBitmap()); 21 [image lockFocus]; 23 [image unlockFocus]; 45 gfx::Image image(gfx::test::CreateBitmap()); 46 [image_view setImage:image];
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
image_decoration_unittest.mm | 23 base::scoped_nsobject<NSImage> image( 26 decoration_.SetImage(image); 27 EXPECT_EQ(decoration_.GetImage(), image); 37 // Decoration with no image is omitted. 42 base::scoped_nsobject<NSImage> image( 45 // Decoration takes up the space of the image. 46 decoration_.SetImage(image); 49 // If the image doesn't fit, decoration is omitted.
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
taskbar_decorator.cc | 9 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) {
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
screenlock_icon_provider.h | 11 #include "ui/gfx/image/image.h" 23 // Adds an icon image for |username| to be stored. 24 void AddIcon(const std::string& username, const gfx::Image& icon); 26 // Returns the icon image set for |username|. If no icon is found, then 27 // this function returns an empty image. 28 gfx::Image GetIcon(const std::string& username); 35 std::map<std::string, gfx::Image> user_icon_map_;
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
window_controls_template.html | 20 -webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALNJREFUeNrsllEOwyAIhmVXwIu487dXKEdy2PBgWuxwm/VhkPwvSuALAhFyzmGmPcJkcwAHcAAHMAMAQGItLGSFhlB8kpmgrGKL2NbiziIWKqHK2SY+qzluBwBKcg2iTr7fjQBoQZySd1W2E0CD2LSqjAQ4Qqh9YY37zRj+5iPx4RPUZac7n6DVhHRHE74bQxo9hvUiio1FRCMXURKIeNFSKD5Pa1zwX7EDOIAD/D3AS4ABAKWdkCCeGGsrAAAAAElFTkSuQmCC'); 34 background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEBJREFUeNrszrENAEAIw8A8EvU32X9RGsQUaewFfM/2l9TKNBWcX10KBwAAAAAAAAAAAAAAAAAAABxggv9ZAQYAhakDi3I15kgAAAAASUVORK5CYII='); 38 background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFtJREFUeNrs1zESgCAMRNEAkSZD5VW8/1k8hFaCCqfY5u9M6v/apIh2mH1hkqXba92uUvxU5Mfoe57xx0Rb7WziAQAAAAAAAAAAAAAAAAAAOcDXkzqvifrvL8AAWBcLpapo5CcAAAAASUVORK5CYII='); 41 -webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFFJREFUeNrs1jsOACAIREHWeP8royWdnwaDj9pi2OhGubtlTrPkAQAAAIC+e1DSUWXOhlWtBGIYq+W5hAAA1GzC23f+fALiVwwAAIDvAUOAAQAv/Aw+jTHzugAAAABJRU5ErkJggg==');
|
/external/chromium_org/printing/ |
image_android.cc | 5 #include "printing/image.h" 9 bool Image::LoadMetafile(const Metafile& metafile) {
|
image_linux.cc | 5 #include "printing/image.h" 9 bool Image::LoadMetafile(const Metafile& metafile) {
|
/external/replicaisland/res/xml/ |
level_1_6_dialog_wanda.xml | 7 image="@drawable/wanda_happy" 13 image="@drawable/wanda_happy"
|
level_2_4_dialog_kyle.xml | 7 image="@drawable/kyle_closeup_neutral" 13 image="@drawable/kyle_closeup_neutral"
|
level_2_5_dialog_kyle.xml | 7 image="@drawable/kyle_closeup_noglasses" 13 image="@drawable/kyle_closeup_noglasses"
|
level_2_9_dialog_kyle.xml | 7 image="@drawable/kyle_closeup_noglasses" 13 image="@drawable/kyle_closeup_neutral"
|