/external/chromium_org/chrome/browser/ui/autofill/ |
generated_credit_card_bubble_controller.h | 17 #include "ui/gfx/image/image.h" 74 // Returns the image that should be shown as an icon in the omnibox. 75 gfx::Image AnchorIcon() const;
|
/external/chromium_org/chrome/browser/ui/gtk/omnibox/ |
omnibox_view_gtk_unittest.cc | 18 #include "ui/gfx/image/image.h" 32 MOCK_CONST_METHOD0(GetFavicon, gfx::Image());
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
browser_non_client_frame_view.cc | 22 #include "ui/gfx/image/image.h" 78 gfx::Image avatar;
|
taskbar_decorator_win.cc | 21 #include "ui/gfx/image/image.h" 56 // The image's size has changed. Resize what we have. 74 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) { 84 // avoids all the wasted effort of the image resizing. 88 // Copy the image since we're going to use it on a separate thread and 89 // gfx::Image isn't thread safe. 91 image ? new SkBitmap(*image->ToSkBitmap()) : NULL) [all...] |
/external/chromium_org/chrome/test/functional/ispy/ispy_core/tools/ |
rendering_test_manager_unittest.py | 5 from PIL import Image 21 self.white = Image.new('RGB', (25, 25), (255, 255, 255)) 22 self.red = Image.new('RGB', (25, 25), (255, 0, 0)) 23 self.black = Image.new('RGB', (25, 25), (0, 0, 0)) 59 # nonexistant image.
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCanvasValue.cpp | 88 PassRefPtr<Image> CSSCanvasValue::image(RenderObject* renderer, const IntSize& /*size*/) function in class:WebCore::CSSCanvasValue
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLImageElement.h | 56 ImageResource* cachedImage() const { return m_imageLoader.image(); } 110 virtual Image* imageContents() OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
ImageBitmapTest.cpp | 47 // Verifies that the cached image held by an ImageBitmap is the same as the 64 ASSERT_EQ(imageBitmapNoCrop->bitmapImage().get(), imageElement->cachedImage()->image()); 65 ASSERT_EQ(imageBitmapInteriorCrop->bitmapImage().get(), imageElement->cachedImage()->image()); 66 ASSERT_EQ(imageBitmapExteriorCrop->bitmapImage().get(), imageElement->cachedImage()->image()); 68 RefPtr<Image> emptyImage = imageBitmapOutsideCrop->bitmapImage(); 69 ASSERT_NE(emptyImage.get(), imageElement->cachedImage()->image());
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
Pattern.cpp | 35 #include "core/platform/graphics/Image.h" 39 Pattern::Pattern(PassRefPtr<Image> image, bool repeatX, bool repeatY) 40 : m_tileImage(image) 59 RefPtr<NativeImageSkia> image = m_tileImage->nativeImageForCurrentFrame(); 61 if (!image) 64 m_pattern = adoptRef(SkShader::CreateBitmapShader(image->bitmap(), SkShader::kRepeat_TileMode, SkShader::kRepeat_TileMode)); 67 // repeats the last line of the image after drawing one tile. To avoid 69 // image to have a line of transparent pixels on the "repeated" edge(s), 78 // FIXME: Is there a better way to pad (not scale) an image in skia [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ResourceView.js | 70 case WebInspector.resourceTypes.Image:
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
PrettyPatch_test.rb | 72 matches = pretty.match("INVALID: Image lacks a checksum.") 73 # FIXME: This should match, but there's a bug when running the tests where the image data 74 # doesn't get properly written out to the temp files, so there is no image and we don't print 75 # the warning that the image is missing its checksum. 78 assert_equal(0, pretty.scan(/INVALID\: Image lacks a checksum\./).size) 82 pretty = check_one_patch(145881, ["New image", 19, 36, 19, 56]) 83 matches = pretty.match("INVALID: Image lacks a checksum.") 89 matches = pretty.match("INVALID: Image lacks a checksum.") 95 matches = pretty.match("INVALID: Image lacks a checksum.")
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nv04_state_tex.c | 70 struct gl_texture_image *ti = t->Image[0][t->BaseLevel];
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texobj.c | 211 if (texObj->Image[face][i]) { 212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i]); 293 struct gl_texture_image *texImage = texObj->Image[i][j]; 474 baseImage = t->Image[0][baseLevel]; 476 /* Always need the base level image */ 478 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel); 497 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state). 553 * Note: we know that the image's width==height (we enforce that 559 assert(t->Image[face][baseLevel] == NULL || 560 t->Image[face][baseLevel]->Width2 = 1427 struct gl_texture_image *image; local [all...] |
/external/chromium_org/ui/message_center/ |
fake_notifier_settings_provider.cc | 8 #include "ui/gfx/image/image.h" 26 item.group = new NotifierGroup(gfx::Image(),
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
TextureBlenderLuminance.java | 10 import com.jme3.texture.Image;
14 import com.jme3.texture.Image.Format;
58 return new Texture2D(new Image(Format.RGBA8, width, height, newData));
62 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
72 * the image format
96 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}", imageFormat);
99 throw new IllegalStateException("Invalid image format type for DDS texture blender: " + imageFormat);
|
/external/jmonkeyengine/engine/src/test/jme3test/niftygui/ |
TestNiftyToMesh.java | 44 import com.jme3.texture.Image.Format;
|
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
TestFBOPassthrough.java | 43 import com.jme3.texture.Image.Format;
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nv04_state_tex.c | 70 struct gl_texture_image *ti = t->Image[0][t->BaseLevel];
|
/external/mesa3d/src/mesa/main/ |
texobj.c | 211 if (texObj->Image[face][i]) { 212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i]); 293 struct gl_texture_image *texImage = texObj->Image[i][j]; 474 baseImage = t->Image[0][baseLevel]; 476 /* Always need the base level image */ 478 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel); 497 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state). 553 * Note: we know that the image's width==height (we enforce that 559 assert(t->Image[face][baseLevel] == NULL || 560 t->Image[face][baseLevel]->Width2 = 1427 struct gl_texture_image *image; local [all...] |
/external/opencv/cvaux/src/ |
cvface.cpp | 297 void RFace::Show(IplImage * Image) 308 cvRectangle(Image,p1,p2,CV_RGB(255,0,0),1); 313 }//void RFace::Show(IplImage * Image) 315 void RFace::ShowIdeal(IplImage* Image) 322 cvRectangle(Image,p1,p2,CV_RGB(0,0,255),1); 324 }//void RFace::ShowIdeal(IplImage* Image)
|
/frameworks/base/libs/hwui/ |
AssetAtlas.h | 30 #include "Image.h" 182 Image* mImage;
|
/pdk/apps/CameraITS/tests/ |
test_black_white.py | 15 import its.image namespace 20 import Image 42 img = its.image.load_yuv420_to_rgb_image(fname, w, h) 43 its.image.write_image(img, "%s_black.jpg" % (NAME)) 44 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1) 45 black_means = its.image.compute_image_means(tile) 55 img = its.image.load_yuv420_to_rgb_image(fname, w, h) 56 its.image.write_image(img, "%s_white.jpg" % (NAME)) 57 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1) 58 white_means = its.image.compute_image_means(tile [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_action.h | 29 class Image; 170 void SetIcon(int tab_id, const gfx::Image& image); 172 // Applies the attention and animation image transformations registered for 174 gfx::Image ApplyAttentionAndAnimation(const gfx::ImageSkia& icon, 245 // Returns icon image with badge for specified tab. 356 // image representations will be selected.
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
bookmarks_helper.cc | 34 #include "ui/gfx/image/image_skia.h" 174 // Represents a favicon image and the icon URL associated with it. 179 FaviconData(const gfx::Image& favicon_image, 181 : image(favicon_image), 188 gfx::Image image; member in struct:__anon8259::FaviconData 218 const gfx::Image& image, 230 image); 233 node, profile, icon_url, image.As1xPNGBytes()) 524 SetFaviconImpl(test()->GetProfile(profile), node, icon_url, image, local [all...] |
/external/chromium_org/chrome/browser/ui/ash/launcher/ |
browser_shortcut_launcher_item_controller.cc | 31 #include "ui/gfx/image/image.h" 169 gfx::Image app_icon = GetBrowserListIcon(web_contents); 177 gfx::Image app_icon = app_controller_->GetAppListIcon(web_contents); 193 gfx::Image BrowserShortcutLauncherItemController::GetBrowserListIcon(
|