Searched defs:icon (Results 1 - 25 of 234) sorted by relevance

12345678910

/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_syswm.cc30 void QT_SetWMCaption(_THIS, const char *title, const char *icon) argument
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxwm.c33 void NX_SetCaption (_THIS, const char * title, const char * icon) argument
/external/chromium_org/chrome/browser/status_icons/
H A Dstatus_icon_unittest.cc25 virtual void DisplayBalloon(const gfx::ImageSkia& icon,
32 TestStatusIcon icon; local
36 icon.AddObserver(&observer);
37 icon.DispatchClickEvent();
38 icon.AddObserver(&observer2);
39 icon.DispatchClickEvent();
40 icon.RemoveObserver(&observer);
41 icon.RemoveObserver(&observer2);
46 TestStatusIcon icon; local
49 icon
[all...]
H A Dstatus_tray.cc17 StatusIcon* icon = CreatePlatformStatusIcon(type, image, tool_tip); local
18 if (icon)
19 status_icons_.push_back(icon);
20 return icon;
23 void StatusTray::RemoveStatusIcon(StatusIcon* icon) { argument
25 std::find(status_icons_.begin(), status_icons_.end(), icon));
H A Dstatus_tray_unittest.cc18 virtual void DisplayBalloon(const gfx::ImageSkia& icon,
47 // Make sure that removing an icon removes it from the list.
52 StatusIcon* icon = tray.CreateStatusIcon( local
55 tray.RemoveStatusIcon(icon);
/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item_views.cc32 gfx::Image* icon,
42 icon ? icon->AsImageSkia() : gfx::ImageSkia(),
31 DragDownloadItem(const content::DownloadItem* download, gfx::Image* icon, gfx::NativeView view) argument
/external/chromium_org/chrome/browser/notifications/
H A Dnotification_conversion_helper_unittest.cc57 gfx::Image icon = gfx::Image::CreateFrom1xBitmap(bitmap); local
64 icon,
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_app_menu_item.h17 const gfx::Image* icon,
25 // Retrieves the icon for this menu option.
26 const gfx::Image& icon() const { return icon_; } function in class:ChromeLauncherAppMenuItem
H A Dchrome_launcher_app_menu_item.cc9 const gfx::Image* icon,
12 icon_(icon ? gfx::Image(*icon) : gfx::Image()),
7 ChromeLauncherAppMenuItem( const base::string16 title, const gfx::Image* icon, bool has_leading_separator) argument
H A Dchrome_launcher_app_menu_item_tab.cc16 const gfx::Image* icon,
19 : ChromeLauncherAppMenuItem(title, icon, has_leading_separator),
14 ChromeLauncherAppMenuItemTab( const base::string16 title, const gfx::Image* icon, content::WebContents* content, bool has_leading_separator) argument
H A Dchrome_launcher_app_menu_item_v2app.cc11 const gfx::Image* icon,
16 : ChromeLauncherAppMenuItem(title, icon, has_leading_separator),
9 ChromeLauncherAppMenuItemV2App( const base::string16 title, const gfx::Image* icon, const std::string& app_id, ChromeLauncherController* launcher_controller, int app_index, bool has_leading_separator) argument
/external/chromium_org/chrome/browser/ui/views/
H A Delevation_icon_setter.cc25 scoped_ptr<SkBitmap> icon; local
29 return icon.Pass();
43 return icon.Pass();
45 icon.reset(IconUtil::CreateSkBitmapFromHICON(
50 return icon.Pass();
72 void ElevationIconSetter::SetButtonIcon(scoped_ptr<SkBitmap> icon) { argument
73 if (icon) {
75 gfx::ImageSkia::CreateFrom1xBitmap(*icon));
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dscreenlock_icon_provider.cc14 const gfx::Image& icon) {
15 user_icon_map_[username] = icon;
13 AddIcon(const std::string& username, const gfx::Image& icon) argument
/external/chromium_org/ash/system/chromeos/
H A Dlabel_tray_view.cc48 const gfx::ImageSkia* icon = rb.GetImageSkiaNamed(icon_resource_id_); local
49 child->AddIconAndLabel(*icon, message, gfx::Font::NORMAL);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_action_icon_factory.cc60 gfx::ImageSkia icon = action_->GetExplicitlySetIcon(tab_id); local
61 if (!icon.isNull())
62 return icon;
64 icon = action_->GetDeclarativeIcon(tab_id);
65 if (!icon.isNull())
66 return icon;
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_textfield.h56 @property(nonatomic, retain) NSImage* icon; variable
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
H A Dmanage_passwords_decoration.h34 // Manage passwords icon on the right side of the field. This appears when
48 // Updates the decoration according to icon state changes.
52 ManagePasswordsIconCocoa* icon() { return icon_.get(); } function in class:ManagePasswordsDecoration
/external/chromium_org/chrome/browser/ui/cocoa/passwords/
H A Dmanage_passwords_bubble_cocoa.h32 ManagePasswordsIcon* icon);
37 // Sets the location bar icon that should be updated with state changes.
38 void SetIcon(ManagePasswordsIcon* icon) { icon_ = icon; } argument
52 ManagePasswordsIcon* icon);
59 // The location bar icon corresponding to the bubble.
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_info_ui.cc72 // Set the icon URL.
73 GURL icon = local
78 source_->AddString("icon", base::UTF8ToUTF16(icon.spec()));
/external/chromium_org/chrome/common/
H A Dicon_with_badge_image_source.cc13 const gfx::ImageSkia& icon,
21 icon_(icon),
36 // Draw a badge on the provided browser action icon's canvas.
12 IconWithBadgeImageSource( const gfx::ImageSkia& icon, const gfx::Size& icon_size, const gfx::Size& spacing, const std::string& text, const SkColor& text_color, const SkColor& background_color, extensions::ActionInfo::Type action_type) argument
/external/chromium_org/third_party/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
H A DR.java14 public static final int icon=0x7f020000; field in class:R.drawable
/external/chromium_org/ui/views/
H A Dbutton_drag_utils.cc27 const gfx::ImageSkia& icon,
33 SetDragImage(url, title, icon, press_pt, data, widget);
38 const gfx::ImageSkia& icon,
55 if (icon.isNull()) {
60 button.SetImage(views::Button::STATE_NORMAL, icon);
25 SetURLAndDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
36 SetDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_syswm.cc31 void BE_SetWMCaption(_THIS, const char *title, const char *icon) argument
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemwm.c43 void GEM_SetCaption(_THIS, const char *title, const char *icon) argument
50 if (icon) {
51 GEM_icon_name = icon;
56 void GEM_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask) argument
67 if (icon == NULL) {
71 /* Convert icon to the screen format */
72 sicon = SDL_CreateRGBSurface(SDL_SWSURFACE, icon->w, icon->h,
80 bounds.w = icon->w;
81 bounds.h = icon
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_wm.c38 void ph_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask) argument
44 void ph_SetCaption(_THIS, const char *title, const char *icon) argument

Completed in 359 milliseconds

12345678910