HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 501 - 525 of 1015) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/extensions/
extension_action.cc 26 #include "ui/gfx/image/image.h"
27 #include "ui/gfx/image/image_skia.h"
28 #include "ui/gfx/image/image_skia_source.h"
57 // Source for painting animated skia image.
61 const gfx::ImageSkia& image,
63 : image_(image),
238 void ExtensionAction::SetIcon(int tab_id, const gfx::Image& image) {
239 SetValue(&icon_, tab_id, image.AsImageSkia())
    [all...]
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader_client.js 40 * Image loader's extension id.
82 * Sends a message to the Image Loader extension.
96 * Handles a message from the remote image loader and calls the registered
119 * Loads and resizes and image. Use opt_isValid to easily cancel requests
122 * @param {string} url Url of the requested image.
228 * @param {string} url Image url.
244 * Evicts the least used elements in cache to make space for a new image.
263 * Saves an image in the cache.
266 * @param {string} data Image data.
272 // If the image is currently in cache, then remove it
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
browser_shortcut_launcher_item_controller.cc 36 #include "ui/gfx/image/image.h"
178 gfx::Image app_icon = GetBrowserListIcon(web_contents);
186 gfx::Image app_icon =
245 gfx::Image BrowserShortcutLauncherItemController::GetBrowserListIcon(
  /external/chromium_org/chrome/browser/ui/gtk/panels/
panel_gtk.cc 42 #include "ui/gfx/image/cairo_cached_surface.h"
43 #include "ui/gfx/image/image.h"
146 gfx::Image CreateImageForColor(SkColor color) {
149 return gfx::Image(gfx::ImageSkia(canvas.ExtractImageRep()));
152 const gfx::Image GetActiveBackgroundDefaultImage() {
153 CR_DEFINE_STATIC_LOCAL(gfx::Image, image, ());
154 if (image.IsEmpty())
155 image = CreateImageForColor(kActiveBackgroundDefaultColor)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp 77 case Resource::Image:
123 case Resource::Image:
157 Resource* resource = createResource(Resource::Image, request, charset);
203 case Resource::Image:
288 if (requestURL.isValid() && canRequest(Resource::Image, requestURL, request.options(), request.forPreload(), request.originRestriction()))
298 return toImageResource(requestResource(Resource::Image, request));
398 case Resource::Image:
453 case Resource::Image:
506 case Resource::Image:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Cursor.cpp 31 IntPoint determineHotSpot(Image* image, const IntPoint& specifiedHotSpot)
33 if (image->isNull())
37 IntRect imageRect = image->rect();
41 // If hot spot is not specified externally, it can be extracted from some image formats (e.g. .cur).
43 bool imageHasIntrinsicHotSpot = image->getHotSpot(intrinsicHotSpot);
145 Cursor::Cursor(Image* image, const IntPoint& hotSpot)
147 , m_image(image)
148 , m_hotSpot(determineHotSpot(image, hotSpot)
    [all...]
  /external/chromium_org/ui/message_center/
notification_list.cc 134 const gfx::Image& image) {
138 (*iter)->set_icon(image);
143 const gfx::Image& image) {
147 (*iter)->set_image(image);
153 const gfx::Image& image) {
157 (*iter)->SetButtonIcon(button_index, image);
fake_notifier_settings_provider.cc 8 #include "ui/gfx/image/image.h"
29 item.group = new NotifierGroup(gfx::Image(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
AccordionControl.java 32 import org.eclipse.swt.graphics.Image;
75 private Image mClosed;
76 private Image mOpen;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 38 import org.eclipse.swt.graphics.Image;
54 private Image mError;
55 private Image mWarning;
  /external/chromium_org/chrome/browser/download/
drag_download_item_views.cc 16 #include "ui/gfx/image/image.h"
38 gfx::Image* icon,
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api.cc 28 #include "ui/gfx/image/image.h"
257 gfx::Image OmniboxAPI::GetOmniboxIcon(const std::string& extension_id) {
258 return gfx::Image::CreateFrom1xBitmap(
262 gfx::Image OmniboxAPI::GetOmniboxPopupIcon(const std::string& extension_id) {
263 return gfx::Image::CreateFrom1xBitmap(
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_menu_model.h 105 gfx::Image* icon) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_popup_contents_view.h 54 virtual gfx::Image GetIconIfExtensionMatch(size_t index) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/
profile_chooser_view.h 25 class Image;
  /external/chromium_org/chrome/browser/ui/views/toolbar/
browser_action_view.h 29 class Image;
107 // loading the image for the button asynchronously on the file thread.
  /external/chromium_org/chrome/browser/ui/views/website_settings/
website_settings_popup_view.h 114 const gfx::Image& icon,
  /external/chromium_org/chrome/browser/ui/web_applications/
web_app_ui.cc 34 #include "ui/gfx/image/image.h"
35 #include "ui/gfx/image/image_family.h"
36 #include "ui/gfx/image/image_skia.h"
220 // Update icon with download image and update shortcut.
222 gfx::Image::CreateFrom1xBitmap(bitmaps[closest_index]));
347 const gfx::Image& image) {
348 // If the image failed to load (e.g. if the resource being loaded was empty)
350 if (image.IsEmpty())
    [all...]
  /external/chromium_org/chrome/test/functional/ispy/client/
chrome_utils.py 10 from PIL import Image
28 screenshot_func: a function that returns a PIL.Image.
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Pasteboard.cpp 36 #include "platform/graphics/Image.h"
81 void Pasteboard::writeImage(Image* image, const KURL& url, const String& title)
83 ASSERT(image);
85 RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumSkia.h 159 bool paintMediaButtonInternal(GraphicsContext*, const IntRect&, Image*);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImage.h 34 #include "platform/graphics/Image.h"
44 class PLATFORM_EXPORT BitmapImage : public Image {
73 // we start and stop animating lazily. Animation begins whenever someone draws the image. It will
74 // automatically pause once all observers no longer want to render the image anywhere.
95 Uncertain, // We have a repetition count, but it might be wrong (some GIFs have a count after the image data, and will report "loop once" until all data has been decoded).
119 // the entire frame buffer cache and tell the image source to destroy
120 // everything; this is used when e.g. we want to free some room in the image
124 // other frames to avoid redecoding the whole image on every frame.
127 // If the image is large enough, calls destroyDecodedData().
130 // Generally called by destroyDecodedData(), destroys whole-image metadat
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 163 WebCore::Image* image = unwrap<Element>()->imageContents();
164 if (!image)
167 RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
  /external/chromium_org/third_party/mesa/src/docs/
MESA_ycbcr_texture.spec 43 image columns, the second component is Cb. For pixels in odd-numbered
44 image columns, the second component is Cr. If one were to convert the
115 In section 3.8.1, Texture Image Specification, on page 125, add
120 indicate that the image data is in YCbCr format. type must
132 In section 3.8.1, Texture Image Specification, on page 126, add
139 In section 3.8.2, Alternate Texture Image Specification Commands, on
143 "If the internal storage format of the image being updated by
185 INVALID_OPERATION is generated by TexSubImage2D if the internal image
189 image is YCBCR_MESA.
  /external/chromium_org/ui/views/controls/button/
label_button.h 12 #include "ui/gfx/image/image_skia.h"
34 // Get or set the image shown for the specified button state.
35 // GetImage returns the image for STATE_NORMAL if the state's image is empty.
37 void SetImage(ButtonState for_state, const gfx::ImageSkia& image);
58 // The optional image will lead the text, unless the button is right-aligned.
82 ImageView* image() const { return image_; } function in class:views::LabelButton
96 // Updates the image view to contain the appropriate button state image.
105 FRIEND_TEST_ALL_PREFIXES(LabelButtonTest, Image);
    [all...]

Completed in 294 milliseconds

<<21222324252627282930>>