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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/login/
user_image.h 10 #include "ui/gfx/image/image_skia.h"
15 // Wrapper class storing a still image and it's raw representation. Could be
26 static UserImage CreateAndEncode(const gfx::ImageSkia& image);
32 explicit UserImage(const gfx::ImageSkia& image);
37 // of |image|.
38 UserImage(const gfx::ImageSkia& image, const RawImage& raw_image);
42 const gfx::ImageSkia& image() const { return image_; } function in class:chromeos::UserImage
44 // Optional raw representation of the still image.
48 // Discards the stored raw image, freeing used memory.
51 // Optional raw representation of the animated image
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/status_icons/
status_tray_mac.h 19 const gfx::ImageSkia& image,
  /external/chromium_org/chrome/browser/ui/gtk/status_icons/
status_tray_gtk.h 20 const gfx::ImageSkia& image,
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_linux.h 20 const gfx::ImageSkia& image,
status_tray_linux.cc 19 const gfx::ImageSkia& image,
21 return StatusIconLinuxWrapper::CreateWrappedStatusIcon(image, tool_tip);
  /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/ppapi/cpp/
mouse_cursor.h 24 /// and set the custom image to a default-constructor ImageData object.
26 /// <code>PP_MOUSECURSOR_TYPE_CUSTOM</code> and specify your image and hot
35 /// @param[in] image A <code>ImageData</code> object identifying the
36 /// custom image to set when the type is
37 /// <code>PP_MOUSECURSOR_TYPE_CUSTOM</code>. The image must be less than 32
38 /// pixels in each direction and must be of the system's native image format.
43 /// pixel position within the given image of the "hot spot" of the cursor.
47 /// was invalid or if the image was too large.
50 const ImageData& image = ImageData(),
  /external/chromium_org/third_party/WebKit/public/platform/
WebImage.h 40 namespace WebCore { class Image; }
55 WebImage(const WebImage& image)
58 assign(image);
61 WebImage& operator=(const WebImage& image)
63 assign(image);
67 // Decodes the given image data. If the image has multiple frames,
72 // Returns a list of all frames in the image. Only the first frame at each pixel
83 BLINK_PLATFORM_EXPORT WebImage(const WTF::PassRefPtr<WebCore::Image>&);
84 BLINK_PLATFORM_EXPORT WebImage& operator=(const WTF::PassRefPtr<WebCore::Image>&)
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDrawShader.h 25 SkBaseBitmap* image; member in class:SkDrawBitmapShader
  /external/chromium_org/third_party/skia/src/image/
SkImage.cpp 13 static SkImage_Base* as_IB(SkImage* image) {
14 return static_cast<SkImage_Base*>(image);
17 static const SkImage_Base* as_IB(const SkImage* image) {
18 return static_cast<const SkImage_Base*>(image);
  /external/chromium_org/ui/gfx/image/
image_util.h 14 class Image;
19 // Creates an image from the given JPEG-encoded input. If there was an error
20 // creating the image, returns an IsEmpty() Image.
21 GFX_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input,
25 // the given image.
26 // Returns true if the image has a 1x representation and the 1x representation
29 // Returns true if the Image was encoded successfully.
30 GFX_EXPORT bool JPEG1xEncodedDataFromImage(const Image& image,
    [all...]
image_skia_util_ios.h 21 GFX_EXPORT gfx::ImageSkia ImageSkiaFromUIImage(UIImage* image);
27 UIImage* image,
  /external/eigen/doc/snippets/
FullPivLU_image.cpp 9 << endl << m.fullPivLu().image(m) << endl;
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
MipMapGenerator.java 36 import com.jme3.texture.Image;
37 import com.jme3.texture.Image.Format;
42 import java.awt.image.BufferedImage;
62 public static void resizeToPowerOf2(Image image){
63 BufferedImage original = ImageToAwt.convert(image, false, true, 0);
64 int potWidth = FastMath.nearestPowerOfTwo(image.getWidth());
65 int potHeight = FastMath.nearestPowerOfTwo(image.getHeight());
71 Image output = loader.load(scaled, false);
73 image.setWidth(potSize)
    [all...]
  /external/skia/src/animator/
SkDrawShader.h 25 SkBaseBitmap* image; member in class:SkDrawBitmapShader
  /external/skia/src/image/
SkImage.cpp 13 static SkImage_Base* as_IB(SkImage* image) {
14 return static_cast<SkImage_Base*>(image);
17 static const SkImage_Base* as_IB(const SkImage* image) {
18 return static_cast<const SkImage_Base*>(image);
  /external/valgrind/main/coregrind/m_debuginfo/
priv_readelf.h 43 extern Bool ML_(is_elf_object_file)( void* image, SizeT n_image, Bool rel_ok );
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.h 53 dpbStorage_t *dpb, u32 mbNum, image_t *image, u8 *data);
  /external/chromium/chrome/browser/ui/cocoa/tabs/
throbber_view.h 19 // - Filmstrip: Draws via a sequence of frames in an image. There is no state
20 // where the class is frozen on an image and not animating. The image needs to
23 // - Toast: Draws an image animating down to the bottom and then another image
31 // Creates a filmstrip view with |frame| and image |image|.
33 image:(NSImage*)image;
  /external/chromium_org/chrome/browser/profiles/
avatar_menu_desktop.cc 14 gfx::Image* image,
24 *image = cache.GetAvatarIconOfProfileAtIndex(index);
  /external/chromium_org/chrome/browser/resources/options/
managed_user_create_confirm.css 16 /* Omit the image on very small screens. */
17 #managed-user-created-image {
23 #managed-user-created-image {
26 background-image: -webkit-image-set(
managed_user_learn_more.css 21 /* Omit the image on very small screens. */
22 #managed-user-learn-more-image {
28 #managed-user-learn-more-image {
31 background-image: -webkit-image-set(
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
NinePieceImage.cpp 42 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices, const BorderImageLengthBox& outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule)
45 m_data.access()->image = image;
58 , image(0)
70 , image(other.image)
79 return StyleImage::imagesEquivalent(image.get(), other.image.get())
  /external/chromium_org/ui/snapshot/
snapshot_gtk.cc 48 ui::XScopedImage image(XGetImage(
51 if (!image.get()) {
52 LOG(ERROR) << "Couldn't get image";
55 if (image->depth != 24) {
56 LOG(ERROR)<< "Unsupported image depth " << image->depth;
61 reinterpret_cast<unsigned char*>(image->data),
63 image->width,
64 image->height,
65 image->bytes_per_line)
    [all...]
  /external/chromium_org/ui/views/linux_ui/
status_icon_linux.h 39 virtual void SetImage(const gfx::ImageSkia& image) = 0;
40 virtual void SetPressedImage(const gfx::ImageSkia& image) = 0;

Completed in 200 milliseconds

1 2 3 45 6 7 8 91011>>