HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 201 - 225 of 880) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.h 49 virtual PassRefPtr<Image> image(int width = 0, int height = 0) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleGeneratedImage.h 53 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestView.js 77 case WebInspector.resourceTypes.Image:
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfAlternateImageDictionary_autogen.cpp 11 SkPdfStream* SkPdfAlternateImageDictionary::Image(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Image", "");
20 return get("Image", "") != NULL;
  /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;
52 gfx::Image* icon) const;
127 void SetIcon(int index, const gfx::Image& icon);
156 virtual bool GetIconAt(int index, gfx::Image* icon) OVERRIDE;
  /external/chromium_org/ui/base/resource/
resource_bundle_win.cc 15 #include "ui/gfx/image/image_skia.h"
16 #include "ui/gfx/image/image_skia_source.h"
59 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
60 // Flipped image is not used on Windows.
63 // Windows only uses SkBitmap for gfx::Image, so this is the same as
  /external/chromium_org/ui/gfx/
icon_util_unittest.cc 15 #include "ui/gfx/image/image.h"
16 #include "ui/gfx/image/image_family.h"
40 // Given a file name for an .ico file and an image dimensions, this
132 gfx::Image image = gfx::Image::CreateFrom1xPNGBytes( local
134 SkBitmap bitmap = image.AsBitmap();
210 // return an empty image.
213 image_family.Add(gfx::Image::CreateFrom1xBitmap(*bitmap))
    [all...]
  /external/chromium_org/ui/wm/core/
image_grid.cc 13 #include "ui/gfx/image/image.h"
14 #include "ui/gfx/image/image_skia_operations.h"
29 // center image.
45 // Returns the dimensions of |image| if non-NULL or gfx::Size(0, 0) otherwise.
46 gfx::Size GetImageSize(const gfx::Image* image) {
47 return image ? gfx::Size(image->ToImageSkia()->width(),
48 image->ToImageSkia()->height()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.h 15 #include "ui/gfx/image/image_skia.h"
29 class Image;
98 void OnExtensionIconLoaded(const gfx::Image& icon);
  /external/chromium_org/chrome/browser/notifications/
notification.cc 19 gfx::Image(),
34 const gfx::Image& icon,
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_models.h 43 // As above, but also accepts an image which will be displayed alongside the
47 const gfx::Image& icon);
55 // As above, but also accepts an image which will be displayed alongside the
61 const gfx::Image& icon);
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_sub_menu_model.h 31 class Image;
165 gfx::Image default_favicon_;
  /external/chromium_org/chrome/browser/ui/views/profiles/
avatar_menu_button.cc 64 // Scale the image to fit the width of the button.
77 // pixel below the image center rather than above. This is because the
78 // incognito image has shadows at the top that make the apparent center below
85 void AvatarMenuButton::SetAvatarIcon(const gfx::Image& icon,
87 icon_.reset(new gfx::Image(icon));
  /external/chromium_org/chrome/browser/ui/views/toolbar/
browser_action_test_util_views.cc 16 #include "ui/gfx/image/image.h"
53 gfx::Image BrowserActionTestUtil::GetIcon(int index) {
56 return gfx::Image(icon);
  /external/chromium_org/components/enhanced_bookmarks/
bookmark_image_service.cc 35 std::pair<gfx::Image, GURL> image_data = store->Get(page_url);
148 const gfx::Image& image,
151 if (!image.IsEmpty() || !image_url.is_empty()) {
152 // Either the image was in the store or there is no image in the store, but
153 // an URL for an image is present, indicating that a previous attempt to
154 // download the image failed. Just return the image.
155 original_callback.Run(image, image_url)
    [all...]
  /external/chromium_org/content/public/common/
content_client.cc 10 #include "ui/gfx/image/image.h"
96 gfx::Image& ContentClient::GetNativeImageNamed(int resource_id) const {
97 CR_DEFINE_STATIC_LOCAL(gfx::Image, kEmptyImage, ());
content_client.h 29 class Image;
117 // Returns a native image given its id.
118 virtual gfx::Image& GetNativeImageNamed(int resource_id) const;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Pattern.cpp 38 PassRefPtr<Pattern> Pattern::createBitmapPattern(PassRefPtr<Image> tileImage, RepeatMode repeatMode)
43 Pattern::Pattern(PassRefPtr<Image> image, RepeatMode repeatMode)
47 if (image) {
48 m_tileImage = image->nativeImageForCurrentFrame();
73 // repeats the last line of the image after drawing one tile. To avoid
75 // image to have a line of transparent pixels on the "repeated" edge(s),
88 // FIXME: Is there a better way to pad (not scale) an image in skia?
BitmapImageTest.cpp 50 virtual void decodedSizeChanged(const Image*, int delta)
54 virtual void didDraw(const Image*) OVERRIDE { }
55 virtual bool shouldPauseAnimation(const Image*) OVERRIDE { return false; }
56 virtual void animationAdvanced(const Image*) OVERRIDE { }
57 virtual void changedInRect(const Image*, const IntRect&) { }
109 PassRefPtr<Image> imageForDefaultFrame()
172 RefPtr<BitmapImage> image = BitmapImage::create(); local
173 EXPECT_FALSE(image->isAllDataReceived());
175 image->setData(imageData, false);
176 EXPECT_FALSE(image->isAllDataReceived())
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.hpp 249 struct Image : public Config
256 Image (void)
262 struct Renderbuffer : public Image
269 struct Texture : public Image
311 //! image with name `imageName` is `image`, using `vfr` to check format
313 bool isComplete (glw::GLenum attPoint, const Image* image,
347 glw::GLsizei imageNumSamples (const Image& img);
368 const Image* getImage (glw::GLenum type, glw::GLuint imgName) const
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
PageSiteComposite.java 15 import org.eclipse.swt.graphics.Image;
68 * Sets the {@link Image} for title;
70 public void setTitleImage(Image image) {
71 m_title.setImage(image);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 19 import org.eclipse.swt.graphics.Image;
97 * @return the {@link Image} to display on {@link Button}.
99 protected Image getImage() {
  /external/chromium_org/chrome/browser/extensions/
extension_disabled_ui.cc 49 #include "ui/gfx/image/image.h"
50 #include "ui/gfx/image/image_skia_operations.h"
153 const gfx::Image& icon);
162 virtual gfx::Image GetBubbleViewIcon() OVERRIDE;
185 gfx::Image icon_;
209 const gfx::Image& icon)
217 icon_ = gfx::Image(
278 gfx::Image ExtensionDisabledGlobalError::GetBubbleViewIcon() {
406 const gfx::Image& icon)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texfilter.c 411 /* Power of two image sizes only */
486 * Compute slice/image to use for 1D or 2D array texture.
508 const struct gl_texture_image *img = texObj->Image[0][level];
558 const struct gl_texture_image *img = texObj->Image[0][level];
834 GLenum format = tObj->Image[0][tObj->BaseLevel]->_BaseFormat;
924 sample_1d_nearest(ctx, samp, tObj->Image[0][level], texcoord[i], rgba[i]);
940 sample_1d_linear(ctx, samp, tObj->Image[0][level], texcoord[i], rgba[i]);
957 sample_1d_nearest(ctx, samp, tObj->Image[0][tObj->_MaxLevel],
963 sample_1d_nearest(ctx, samp, tObj->Image[0][level ], texcoord[i], t0);
964 sample_1d_nearest(ctx, samp, tObj->Image[0][level+1], texcoord[i], t1)
1006 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1023 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1366 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1383 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
2232 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
2249 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3020 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3038 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3311 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3328 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
    [all...]

Completed in 643 milliseconds

1 2 3 4 5 6 7 891011>>