HomeSort by relevance Sort by last modified time
    Searched refs:icon (Results 126 - 150 of 1109) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/libs/input/
SpriteController.cpp 136 update.state.surfaceWidth = update.state.icon.bitmap.width();
137 update.state.surfaceHeight = update.state.icon.bitmap.height();
154 int32_t desiredWidth = update.state.icon.bitmap.width();
155 int32_t desiredHeight = update.state.icon.bitmap.height();
216 surfaceCanvas.drawBitmap(update.state.icon.bitmap, 0, 0, &paint);
218 if (outBuffer.width > update.state.icon.bitmap.width()) {
220 surfaceCanvas.drawRectCoords(update.state.icon.bitmap.width(), 0,
221 outBuffer.width, update.state.icon.bitmap.height(), paint);
223 if (outBuffer.height > update.state.icon.bitmap.height()) {
225 surfaceCanvas.drawRectCoords(0, update.state.icon.bitmap.height()
    [all...]
  /external/chromium_org/ui/webui/resources/css/
tree.css 24 .expand-icon {
40 html[dir=rtl] .expand-icon {
44 .tree-item[expanded] > .tree-row > .expand-icon {
50 .tree-row .expand-icon {
54 .tree-row[may-have-children] .expand-icon {
58 .tree-row[has-children=false] .expand-icon {
129 tree[icon-visibility=hidden] .tree-label {
134 tree[icon-visibility=parent] .tree-label,
135 tree[icon-visibility=parent] .tree-row[has-children=false] > .tree-label {
  /external/chromium_org/chrome/browser/extensions/
extension_action.cc 37 explicit GetAttentionImageSource(const gfx::ImageSkia& icon)
38 : icon_(icon) {}
109 // TODO(dewittj) Report the actual icon size of the system
194 const gfx::ImageSkia& icon,
198 return icon;
201 new IconWithBadgeImageSource(icon,
202 icon.size(),
208 icon.size());
239 // Determines which icon would be returned by |GetIcon|, and returns its width.
241 // If icon has been set, return its width
242 gfx::ImageSkia icon = GetValue(&icon_, tab_id); local
    [all...]
extension_action_icon_factory_unittest.cc 184 // If there is no default icon, and the icon has not been set using |SetIcon|,
187 // Load an extension that has browser action without default icon set in the
202 gfx::Image icon = icon_factory.GetIcon(0); local
206 icon.ToImageSkia()->GetRepresentation(1.0f)));
209 // If the icon has been set using |SetIcon|, the factory should return that
210 // icon.
212 // Load an extension that has browser action without default icon set in the
214 // icon resource).
223 gfx::Image set_icon = LoadIcon("browser_action/no_icon/icon.png")
233 gfx::Image icon = icon_factory.GetIcon(0); local
274 gfx::Image icon = icon_factory.GetIcon(0); local
    [all...]
  /external/chromium_org/ui/gfx/win/
window_impl.cc 34 HICON icon; member in struct:gfx::ClassInfo
36 ClassInfo(int style, HICON icon)
38 icon(icon) {}
42 return (other.style == style && other.icon == icon);
113 class_info.icon,
114 class_info.icon,
271 HICON icon = GetDefaultWindowIcon(); local
272 ClassInfo class_info(initial_class_style(), icon); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.java 119 * match's icon. From the "icon" attribute or, if not set, 0.
121 public int icon; field in class:ResolveInfo
124 * Optional -- if non-null, the {@link #labelRes} and {@link #icon}
191 * Retrieve the current graphical icon associated with this resolution. This
192 * will call back on the given PackageManager to load the icon from
195 * @param pm A PackageManager from which the icon can be loaded; usually
198 * @return Returns a Drawable containing the resolution's icon. If the
199 * item does not have an icon, the default activity icon is returned
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_type.js 80 {type: 'hosted', icon: 'gdoc', name: 'GDOC_DOCUMENT_FILE_TYPE',
82 {type: 'hosted', icon: 'gsheet', name: 'GSHEET_DOCUMENT_FILE_TYPE',
84 {type: 'hosted', icon: 'gslides', name: 'GSLIDES_DOCUMENT_FILE_TYPE',
86 {type: 'hosted', icon: 'gdraw', name: 'GDRAW_DOCUMENT_FILE_TYPE',
88 {type: 'hosted', icon: 'gtable', name: 'GTABLE_DOCUMENT_FILE_TYPE',
90 {type: 'hosted', icon: 'glink', name: 'GLINK_DOCUMENT_FILE_TYPE',
92 {type: 'hosted', icon: 'gform', name: 'GFORM_DOCUMENT_FILE_TYPE',
96 {type: 'document', icon: 'pdf', name: 'PDF_DOCUMENT_FILE_TYPE',
100 {type: 'document', icon: 'word', name: 'WORD_DOCUMENT_FILE_TYPE',
102 {type: 'document', icon: 'ppt', name: 'POWERPOINT_PRESENTATION_FILE_TYPE'
    [all...]
  /external/chromium_org/chrome/browser/chromeos/status/
network_menu.cc 78 MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon,
82 icon(icon),
87 MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon,
91 icon(icon),
98 gfx::ImageSkia icon; member in struct:chromeos::NetworkMenuModel::MenuItem
131 virtual bool GetIconAt(int index, gfx::Image* icon) OVERRIDE;
270 bool NetworkMenuModel::GetIconAt(int index, gfx::Image* icon) {
271 if (!menu_items_[index].icon.isNull())
366 const gfx::ImageSkia icon = ash::network_icon::GetImageForNetwork( local
406 const gfx::ImageSkia icon = ash::network_icon::GetImageForNetwork( local
447 const gfx::ImageSkia icon = ash::network_icon::GetImageForNetwork( local
458 const gfx::ImageSkia icon = local
508 const gfx::ImageSkia icon = local
567 gfx::ImageSkia icon; local
    [all...]
  /external/chromium_org/chrome/browser/status_icons/
status_icon_menu_model.cc 26 gfx::Image icon; member in struct:StatusIconMenuModel::ItemState
81 int command_id, const gfx::Image& icon) {
83 item_states_[command_id].icon = icon;
152 if (iter != item_states_.end() && !iter->second.icon.IsEmpty()) {
153 *image_skia = iter->second.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(),
117 // Icon was not in cache, go fetch it slowly.
150 gfx::Image* icon) {
151 if (icon) {
154 icon->ToImageSkia()->GetRepresentation(
161 // TODO(glen): send a dummy icon
    [all...]
  /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);
menu.h 55 // The icon shown for the menu item.
77 // Whether an item has an icon.
102 // Returns an empty icon.
167 // Append a submenu with an icon to this menu
169 // Unless the icon is empty, calling this function forces the Menu class
173 const gfx::ImageSkia& icon);
177 const gfx::ImageSkia& icon) = 0;
195 // Appends a menu item with an icon. This is for the menu item which
196 // needs an icon. Calling this function forces the Menu class to draw
200 const gfx::ImageSkia& icon);
    [all...]
  /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/
UserSpinnerAdapter.java 47 private final Drawable icon; field in class:UserSpinnerAdapter.UserDetails
54 icon = Resources.getSystem().getDrawable(
60 icon = new BitmapDrawable(context.getResources(), um.getUserIcon(userId));
62 icon = UserIcons.getDefaultUserIcon(userId, /* light= */ false);
90 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(user.icon);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AuthenticatorHelper.java 49 * Gets an icon associated with a particular account type. If none found, return null.
51 * @return a drawable for the icon or null if one cannot be found.
54 Drawable icon = null; local
62 icon = authContext.getResources().getDrawable(desc.iconId);
63 mAccTypeIconCache.put(accountType, icon);
68 if (icon == null) {
69 icon = context.getPackageManager().getDefaultActivityIcon();
71 return icon;
89 Log.w(TAG, "No label icon for account type " + accountType);
  /developers/build/prebuilts/gradle/LNotifications/Application/tests/src/com/example/android/lnotifications/
VisibilityMetadataFragmentTest.java 47 assertEquals(R.drawable.ic_public_notification, notification.icon);
55 assertEquals(R.drawable.ic_private_notification, notification.icon);
63 assertEquals(R.drawable.ic_secret_notification, notification.icon);
  /developers/samples/android/ui/notifications/LNotifications/Application/tests/src/com/example/android/lnotifications/
VisibilityMetadataFragmentTest.java 47 assertEquals(R.drawable.ic_public_notification, notification.icon);
55 assertEquals(R.drawable.ic_private_notification, notification.icon);
63 assertEquals(R.drawable.ic_secret_notification, notification.icon);
  /external/chromium_org/chrome/browser/task_manager/
browser_process_resource_provider.cc 40 HICON icon = GetAppIcon(); local
41 if (icon) {
42 scoped_ptr<SkBitmap> bitmap(IconUtil::CreateSkBitmapFromHICON(icon));
52 // TODO(port): Port icon code.
  /external/chromium_org/ui/app_list/views/
top_icon_animation_view.cc 15 TopIconAnimationView::TopIconAnimationView(const gfx::ImageSkia& icon,
22 DCHECK(!icon.isNull());
24 icon,
51 // Transform used for scaling down the icon and move it back inside to the
52 // original folder icon.
60 // Transform to a scaled down icon inside the original folder icon.
64 // Animate the icon to its target location and scale when opening or
  /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...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsPreference.java 54 public void init(Drawable icon, ProcStatsEntry entry) {
56 setIcon(icon != null ? icon : new ColorDrawable(0));
  /external/chromium_org/chrome/browser/notifications/
notification.cc 42 const gfx::Image& icon,
53 icon,
62 // to prevent "Downloading" the data url and overwriting the existing |icon|.
66 const gfx::Image& icon,
77 icon,
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.css 126 #status-icon {
135 #main-content.device-detected-none #status-icon {
141 #main-content.device-detected-usb #status-icon {
147 #main-content.device-detected-sd #status-icon {
183 #warning-icon {
190 #main-content.warning #warning-icon,
191 #main-content.error #warning-icon {
197 #main-content.success #warning-icon {

Completed in 1577 milliseconds

1 2 3 4 56 7 8 91011>>