HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 226 - 250 of 979) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/views/infobars/
extension_infobar.h 43 void OnImageLoaded(const gfx::Image& image);
55 // plain image (in which case |icon_as_image_| is set) or a dropdown menu (in
66 // The image view for the icon.
67 // It is non-NULL if |infobar_icon_| is an image and in that case
  /external/chromium_org/chrome/browser/ui/views/
script_bubble_view.h 13 #include "ui/gfx/image/image.h"
58 // Call when an image has finished loading.
59 void OnImageLoaded(size_t index, const gfx::Image& image);
avatar_menu_button.cc 51 // Scale the image to fit the width of the button.
64 // pixel below the image center rather than above. This is because the
65 // incognito image has shadows at the top that make the apparent center below
78 void AvatarMenuButton::SetAvatarIcon(const gfx::Image& icon,
80 icon_.reset(new gfx::Image(icon));
browser_action_test_util_views.cc 15 #include "ui/gfx/image/image.h"
49 gfx::Image BrowserActionTestUtil::GetIcon(int index) {
52 return gfx::Image(icon);
profile_chooser_view.h 16 class Image;
84 views::View* CreateProfileImageView(const gfx::Image& icon, int side);
  /external/chromium_org/printing/
image_mac.cc 5 #include "printing/image.h"
15 bool Image::LoadMetafile(const Metafile& metafile) {
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
PasswordGeneratorButtonElement.cpp 46 #include "core/platform/graphics/Image.h"
115 ImageResource* image = m_isInHoverState ? imageForHoverState() : imageForNormalState(); local
116 ASSERT(image);
117 resource->setImageResource(image);
134 RenderImage* image = new RenderImage(this); local
135 image->setImageResource(RenderImageResource::create());
136 return image;
148 RefPtr<Image> image = Image::loadPlatformResource("generatePassword") local
157 RefPtr<Image> image = Image::loadPlatformResource("generatePasswordHover"); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.cpp 64 PassRefPtr<Image> RenderImageResourceStyleImage::image(int width, int height) const function in class:WebCore::RenderImageResourceStyleImage
66 // Generated content may trigger calls to image() while we're still pending, don't assert but gracefully exit.
69 return m_styleImage->image(m_renderer, IntSize(width, height));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedImage.h 38 static PassRefPtr<StyleFetchedImage> create(ImageResource* image) { return adoptRef(new StyleFetchedImage(image)); }
56 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const;
StyleGeneratedImage.h 53 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RequestView.js 72 case WebInspector.resourceTypes.Image:
ResourceType.js 118 Image: new WebInspector.ResourceType("image", "Image", "Images", "rgb(164,60,255)", false),
  /external/chromium_org/third_party/skia/src/svg/
SkSVGImage.cpp 21 DEFINE_SVG_INFO(Image)
24 parser._startElement("image");
37 SkASSERT(strncmp(data, "data:image/", 11) == 0);
  /external/chromium_org/ui/base/models/
simple_menu_model.h 15 class Image;
48 gfx::Image* icon) const;
123 void SetIcon(int index, const gfx::Image& icon);
148 virtual bool GetIconAt(int index, gfx::Image* icon) OVERRIDE;
  /external/chromium_org/ui/gfx/
icon_util_unittest.cc 13 #include "ui/gfx/image/image.h"
14 #include "ui/gfx/image/image_family.h"
38 // Given a file name for an .ico file and an image dimensions, this
131 gfx::Image image = gfx::Image::CreateFrom1xPNGBytes( local
133 SkBitmap bitmap = image.AsBitmap();
211 // return an empty image.
214 image_family.Add(gfx::Image::CreateFrom1xBitmap(*bitmap))
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderDDS.java 12 import com.jme3.texture.Image;
13 import com.jme3.texture.Image.Format;
64 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}", format);
67 throw new IllegalStateException("Invalid image format type for DDS texture blender: " + format);
89 return new Texture2D(new Image(format, width, height, newData));
93 return new Texture3D(new Image(format, width, height, depth, dataArray));
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
PFMLoader.java 38 import com.jme3.texture.Image;
39 import com.jme3.texture.Image.Format;
76 private Image load(InputStream in, boolean needYFlip) throws IOException{
133 return new Image(format, width, height, imageData);
  /external/skia/src/svg/
SkSVGImage.cpp 21 DEFINE_SVG_INFO(Image)
24 parser._startElement("image");
37 SkASSERT(strncmp(data, "data:image/", 11) == 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
LayoutView.java 30 import org.eclipse.swt.graphics.Image;
43 private Image mOnBlack;
45 private Image mOnWhite;
80 Image image = imageLoader.loadImage("show-extras.png", Display.getDefault()); //$NON-NLS-1$ local
81 mShowExtrasAction.setImageDescriptor(ImageDescriptor.createFromImage(image));
93 image = imageLoader.loadImage("load-all-views.png", Display.getDefault()); //$NON-NLS-1$
94 mLoadAllViewsAction.setImageDescriptor(ImageDescriptor.createFromImage(image));
  /external/chromium_org/ui/views/corewm/
image_grid.cc 13 #include "ui/gfx/image/image.h"
48 void ImageGrid::SetImages(const gfx::Image* top_left_image,
49 const gfx::Image* top_image,
50 const gfx::Image* top_right_image,
51 const gfx::Image* left_image,
52 const gfx::Image* center_image,
53 const gfx::Image* right_image,
54 const gfx::Image* bottom_left_image,
55 const gfx::Image* bottom_image
    [all...]
  /external/chromium_org/chrome/browser/infobars/
infobar_delegate.cc 97 gfx::Image InfoBarDelegate::GetIcon() const {
99 return (icon_id == kNoIconID) ? gfx::Image() :
  /external/chromium_org/chrome/browser/notifications/
notification.h 16 #include "ui/gfx/image/image.h"
45 // Initializes a notification with text content and an icon image. Currently
48 const gfx::Image& icon,
61 const gfx::Image& icon,
91 // A url for the image to be shown (optional).
124 // The URL of a large image to be displayed for a a rich notification.
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_models.h 42 // As above, but also accepts an image which will be displayed alongside the
46 const gfx::Image& icon);
54 // As above, but also accepts an image which will be displayed alongside the
59 const gfx::Image& icon);
  /external/chromium_org/chrome/browser/ui/gtk/omnibox/
omnibox_popup_view_gtk.h 31 class Image;
85 gfx::Image IconForMatch(const AutocompleteMatch& match,
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_sub_menu_model.h 30 class Image;
113 gfx::Image default_favicon_;

Completed in 767 milliseconds

1 2 3 4 5 6 7 8 91011>>