HomeSort by relevance Sort by last modified time
    Searched refs:icon (Results 151 - 175 of 1018) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_win.cc 84 // Find the selected status icon.
95 // It is possible for this procedure to be called with an obsolete icon
138 StatusIcon* icon = NULL; local
140 icon = new StatusIconMetro(next_icon_id);
142 icon = new StatusIconWin(next_icon_id, window_, kStatusIconMessage);
144 icon->SetImage(image);
145 icon->SetToolTip(tool_tip);
146 return icon;
  /external/chromium_org/chrome/browser/ui/webui/
fileicon_source.cc 29 // The path used in internal URLs to file icon data.
32 // URL parameter specifying icon size.
101 gfx::Image* icon = im->LookupIconFromFilepath(path, icon_size); local
103 if (icon) {
106 icon->ToImageSkia()->GetRepresentation(scale_factor).sk_bitmap(),
116 // Icon was not in cache, go fetch it slowly.
149 gfx::Image* icon) {
150 if (icon) {
153 icon->ToImageSkia()->GetRepresentation(details.scale_factor)
160 // TODO(glen): send a dummy icon
    [all...]
  /external/chromium_org/ui/message_center/
notification.h 30 gfx::Image icon; member in struct:message_center::ButtonInfo
57 const gfx::Image& icon,
117 const gfx::Image& icon() const { return icon_; } function in class:message_center::Notification
118 void set_icon(const gfx::Image& icon) { icon_ = icon; }
127 void SetButtonIcon(size_t index, const gfx::Image& icon);
178 // Image data for the associated icon, used by Ash when available.
  /external/chromium_org/ui/views/controls/menu/
menu.cc 104 const gfx::ImageSkia& icon) {
105 return AddSubMenuWithIcon(-1, item_id, label, icon);
132 const gfx::ImageSkia& icon) {
133 AddMenuItemWithIcon(-1, item_id, label, icon);
139 const gfx::ImageSkia& icon) {
140 AddMenuItemInternal(index, item_id, label, icon, Menu::NORMAL);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/
packaging.properties 20 root.linux.motif.x86=eclipse,libcairo-swt.so,libXm.so.2,about_files/,about.html,icon.xpm
21 root.linux.gtk.x86=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
22 root.linux.gtk.x86_64=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
  /packages/apps/Settings/src/com/android/settings/accounts/
AuthenticatorHelper.java 60 * Gets an icon associated with a particular account type. If none found, return null.
62 * @return a drawable for the icon or null if one cannot be found.
65 Drawable icon = null; local
75 icon = authContext.getResources().getDrawable(desc.iconId);
77 mAccTypeIconCache.put(accountType, icon);
83 if (icon == null) {
84 icon = context.getPackageManager().getDefaultActivityIcon();
86 return icon;
104 Log.w(TAG, "No label icon for account type " + accountType);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SkbTemplate.java 24 * Key icon definition. It is defined in soft keyboard template. A soft keyboard
25 * can refer to such an icon in its xml file directly to improve performance.
29 Drawable icon; field in class:KeyIconRecord
60 * Default key icon list. It is only for keys which do not have popup icons.
125 public void addDefaultKeyIcons(int keyCode, Drawable icon,
127 if (null == icon || null == iconPopup) return;
130 iconRecord.icon = icon;
153 return iconRecord.icon;
  /external/chromium/chrome/browser/
jumplist_win.h 31 // * icon (std::wstring)
32 // The absolute path to an icon to be displayed in a JumpList.
34 // The icon index in the icon file. If an icon file consists of two or more
35 // icons, set this value to identify the icon. If an icon file consists of
36 // one icon, this value is 0.
48 const std::wstring& icon() const { return icon_; } function in class:ShellLinkItem
60 void SetIcon(const std::wstring& icon, int index, bool favicon)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.h 34 // and icon.
63 const gfx::ImageSkia& icon() const { return icon_; } function in class:chromeos::KioskAppData
86 const gfx::ImageSkia& icon);
90 void OnWebstoreParseSuccess(const SkBitmap& icon);
  /external/chromium_org/chrome/browser/extensions/
extension_action_icon_factory_unittest.cc 185 // If there is no default icon, and the icon has not been set using |SetIcon|,
188 // Load an extension that has browser action without default icon set in the
203 gfx::Image icon = icon_factory.GetIcon(0); local
207 icon.ToImageSkia()->GetRepresentation(ui::SCALE_FACTOR_100P)));
210 // If the icon has been set using |SetIcon|, the factory should return that
211 // icon.
213 // Load an extension that has browser action without default icon set in the
215 // icon resource).
224 gfx::Image set_icon = LoadIcon("browser_action/no_icon/icon.png")
234 gfx::Image icon = icon_factory.GetIcon(0); local
275 gfx::Image icon = icon_factory.GetIcon(0); local
    [all...]
extension_install_ui.h 38 SkBitmap* icon) = 0;
51 // Opens apps UI and animates the app icon for the app with id |app_id|.
  /external/sonivox/jet_tools/JetCreator/
img_Copy.py 48 icon = EmptyIcon()
49 icon.CopyFromBitmap(getBitmap())
50 return icon
img_Find.py 82 icon = EmptyIcon()
83 icon.CopyFromBitmap(getBitmap())
84 return icon
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
IconFactory.java 31 * Builds an icon with the dimensions iconWidth:iconHeight. If scale is set
35 * @param sourceImage image to create an icon from.
36 * @param iconWidth width of the icon bitmap.
37 * @param iconHeight height of the icon bitmap.
38 * @param scale if true, stretch sourceImage to fit the icon dimensions.
39 * @return an icon bitmap with the dimensions iconWidth:iconHeight.
54 Bitmap icon = Bitmap.createBitmap(iconWidth, iconHeight, local
56 drawIcon(icon, sourceImage, scale);
57 return icon;
61 * Draws an icon in the destination bitmap. If scale is set the source imag
    [all...]
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_uninstall_dialog_gtk.cc 62 // Put Icon in the left column.
64 GtkWidget* icon = gtk_image_new_from_pixbuf(pixbuf); local
66 gtk_box_pack_start(GTK_BOX(icon_hbox), icon, TRUE, TRUE, 0); local
90 SkBitmap* icon) {
104 ShowUninstallDialogGtk(browser_window->window(), icon, extension, delegate);
  /external/chromium_org/chrome/browser/download/
download_util.h 53 // DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view|
56 gfx::Image* icon,
  /external/chromium_org/chrome/browser/resources/sync_file_system_internals/
main.css 43 .file-icon {
50 .folder-icon {
  /external/chromium_org/chrome/browser/status_icons/
status_icon.h 28 // Sets the image associated with this status icon.
31 // Sets the image associated with this status icon when pressed.
34 // Sets the hover text for this status icon. This is also used as the label
35 // for the menu item which is created as a replacement for the status icon
37 // status icon (e.g. Ubuntu Unity).
41 // Depending on the platform it might not appear by the icon tray.
42 virtual void DisplayBalloon(const gfx::ImageSkia& icon,
46 // Set the context menu for this icon. The icon takes ownership of the passed
50 // Adds/Removes an observer for clicks on the status icon. If an observer i
    [all...]
status_tray.h 44 // Removes |icon| from this status tray.
45 void RemoveStatusIcon(StatusIcon* icon);
52 // Factory method for creating a status icon for this platform.
  /external/chromium_org/chrome/browser/ui/android/extensions/
extension_install_ui_android.cc 13 const extensions::Extension* extension, SkBitmap* icon) {
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_suggestion_container.h 28 // The icon that comes just before |label_|.
40 // Set the icon for the suggestion.
47 // Shows an auxiliary textfield to the right of the suggestion icon and
49 - (void)showInputField:(NSString*)text withIcon:(NSImage*)icon;
  /external/chromium_org/chrome/browser/ui/cocoa/
confirm_bubble_controller.h 42 - (NSImage*)icon;
  /external/chromium_org/chrome/browser/ui/gtk/status_icons/
status_icon_gtk.h 26 virtual void DisplayBalloon(const gfx::ImageSkia& icon,
38 // Callback invoked when user right-clicks on the status icon.
41 // The currently-displayed icon for the window.
44 // The context menu for this icon (if any).
  /external/chromium_org/chrome/browser/ui/views/autofill/
decorated_textfield.cc 61 void DecoratedTextfield::SetIcon(const gfx::Image& icon) {
62 int icon_space = icon.IsEmpty() ? 0 :
63 icon.Width() + 2 * kTextfieldIconPadding;
69 icon_ = icon;
89 // Then the icon.
  /external/chromium_org/chrome/common/
icon_with_badge_image_source.h 18 // CanvasImageSource for creating extension icon with a badge.
23 const gfx::ImageSkia& icon,
35 // Browser action icon image.
38 // Extra spacing for badge compared to icon bounds.

Completed in 794 milliseconds

1 2 3 4 5 67 8 91011>>