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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
navigatorView.css 30 .navigator-domain-tree-item .icon {
34 .navigator-folder-tree-item .icon {
39 .navigator-script-tree-item .icon {
43 .navigator-stylesheet-tree-item .icon {
47 .navigator-document-tree-item .icon {
51 .navigator-other-tree-item .icon {
79 .navigator .icon {
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryEntry.java 43 * and icon image.
58 super("BatteryUsage Icon Loader");
120 public Drawable icon; field in class:BatteryEntry
127 Drawable icon; field in class:BatteryEntry.UidToDetail
169 icon = Utils.getUserIcon(context, um, info);
177 icon = null;
192 icon = context.getResources().getDrawable(iconId);
200 return icon;
217 icon = utd.icon;
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
network_menu.css 10 .left-icon {
18 .network-label-icon {
28 .network-icon {
  /external/chromium_org/chrome/browser/ui/app_list/
extension_app_item.cc 42 // Overlays a shortcut icon over the bottom left corner of a given image.
45 explicit ShortcutOverlayImageSource(const gfx::ImageSkia& icon)
46 : gfx::CanvasImageSource(icon.size(), false),
47 icon_(icon) {
56 // Draw the overlay in the bottom left corner of the icon.
70 explicit RoundedCornersImageSource(const gfx::ImageSkia& icon)
71 : gfx::CanvasImageSource(icon.size(), false),
72 icon_(icon) {
79 // The radius used to round the app icon.
149 // The overlay icon is disabled for hosted apps in windowed mode wit
182 gfx::ImageSkia icon = installing_icon_; local
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/search/
search_box.css 10 .search-box-icon {
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item_browser.cc 18 const gfx::Image* icon,
21 : ChromeLauncherAppMenuItem(title, icon, has_leading_separator),
chrome_launcher_app_menu_item_browser.h 22 const gfx::Image* icon,
chrome_launcher_app_menu_item_v2app.h 25 const gfx::Image* icon,
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_image_model.h 17 // This model provides data (icon ids and tooltip) for the content setting icons
28 // update its visibility, icon and tooltip.
36 // Returns the resource ID of a string to show when the icon appears, or 0 if
44 void set_icon(int icon) { icon_ = icon; }
  /external/chromium_org/chrome/common/
icon_with_badge_image_source.cc 13 const gfx::ImageSkia& icon,
21 icon_(icon),
36 // Draw a badge on the provided browser action icon's canvas.
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzWM.m 264 void QZ_SetCaption (_THIS, const char *title, const char *icon) {
273 if ( icon != NULL ) {
274 string = [ [ NSString alloc ] initWithUTF8String:icon ];
412 void QZ_SetIcon (_THIS, SDL_Surface *icon, Uint8 *mask)
425 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: icon->w pixelsHigh: icon->h bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES isPlanar: NO colorSpaceName: NSDeviceRGBColorSpace bytesPerRow: 4*icon->w bitsPerPixel: 32 ] autorelease ];
428 SDL_memset(pixels, 0, 4*icon->w*icon->h); /* make the background, which will survive in colorkeyed areas, completely transparent */
435 mergedSurface = SDL_CreateRGBSurfaceFrom(pixels, icon->w, icon->h, 32, 4*icon->w, BYTEORDER_DEPENDENT_RGBA_MASKS)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestSubMenu.java 26 public SubMenu setHeaderIcon(Drawable icon) {
45 public SubMenu setIcon(Drawable icon) {
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
AnimatedVectorDrawableDupPerf.java 40 protected int[] icon = { field in class:AnimatedVectorDrawableDupPerf
98 AnimatedVectorDrawable []d = new AnimatedVectorDrawable[icon.length];
100 for (int i = 0; i < icon.length; i++) {
101 d[i] = create(res,icon[i]);
106 t.setText("avgL=" + df.format(time / (icon.length * 1000000.)) + " ms");
109 for (int i = 0; i < icon.length; i++) {
112 button.setBackgroundResource(icon[i]);
118 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
VectorDrawablePerformance.java 30 protected int[] icon = { field in class:VectorDrawablePerformance
70 VectorDrawable []d = new VectorDrawable[icon.length];
72 for (int i = 0; i < icon.length; i++) {
73 d[i] = VectorDrawable.create(res,icon[i]);
78 t.setText("avgL=" + df.format(time / (icon.length * 1000000.)) + " ms");
81 for (int i = 0; i < icon.length; i++) {
84 button.setBackgroundResource(icon[i]);
90 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
  /packages/apps/Settings/src/com/android/settings/
AppWidgetPickActivity.java 98 Drawable icon = null; local
100 if (info.icon != 0) {
123 icon = packageResources.getDrawableForDensity(info.icon, iconDensity);
125 Log.w(TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
128 if (icon == null) {
129 Log.w(TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
134 PickAdapter.Item item = new PickAdapter.Item(context, label, icon);
    [all...]
  /frameworks/base/core/java/android/app/
LauncherActivity.java 68 public Drawable icon; field in class:LauncherActivity.ListItem
83 icon = resizer.createIconThumbnail(resolveInfo.loadIcon(pm));
166 if (item.icon == null) {
167 item.icon = mIconResizer.createIconThumbnail(item.resolveInfo.loadIcon(getPackageManager()));
169 text.setCompoundDrawablesWithIntrinsicBounds(item.icon, null, null, null);
246 * Utility class to resize icons to match default icon size.
272 * @param icon The icon to get a thumbnail of.
274 * @return A thumbnail for the specified icon or the icon itself if th
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 78 for (Image icon : mIconMap.values()) {
80 if (icon != null) {
81 icon.dispose();
85 for (Image icon : mUrlMap.values()) {
87 if (icon != null) {
88 icon.dispose();
93 for (Image icon : mErrorIcons.values()) {
95 if (icon != null) {
96 icon.dispose();
102 for (Image icon : mWarningIcons.values())
140 Image icon = mIconMap.get(key); local
215 Image icon = mIconMap.get(key); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List14.java 112 holder.icon = (ImageView) convertView.findViewById(R.id.icon);
123 holder.icon.setImageBitmap((position & 1) == 1 ? mIcon1 : mIcon2);
130 ImageView icon; field in class:List14.EfficientAdapter.ViewHolder
  /external/chromium_org/ash/frame/
header_painter_util.h 30 // icon.
33 // Returns the size of the header icon.
40 // Returns the bounds for the header's title given the header icon, the
42 // |icon| should be NULL if the header does not use an icon.
43 static gfx::Rect GetTitleBounds(const views::View* icon,
  /external/chromium_org/chrome/browser/ui/views/frame/
taskbar_decorator_win.cc 41 base::win::ScopedGDIObject<HICON> icon;
55 // Paint the resized icon onto a 16x16 canvas otherwise Windows will badly
62 icon.Set(IconUtil::CreateHICONFromSkBitmap(offscreen_bitmap));
63 if (!icon.Get())
66 taskbar->SetOverlayIcon(hwnd, icon, L"");
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
screenlock_icon_provider.h 15 // Stores icon images used by the screenlockPrivate API. This class is
23 // Adds an icon image for |username| to be stored.
24 void AddIcon(const std::string& username, const gfx::Image& icon);
26 // Removes icon image for |username|.
29 // Returns the icon image set for |username|. If no icon is found, then
33 // Removes all stored icon images.
  /external/chromium_org/ui/app_list/views/
app_list_drag_and_drop_host.h 21 // Create an OS dependent drag proxy icon which can escape the given view.
22 // The proxy should get created using the |icon| with a magnification of
29 const gfx::ImageSkia& icon,
34 // Update the screen location of the Drag icon proxy.
  /frameworks/base/core/java/android/view/
ContextMenu.java 58 * Sets the context menu header's icon to the icon given in <var>iconRes</var>
61 * @param iconRes The resource identifier used for the icon.
67 * Sets the context menu header's icon to the icon given in <var>icon</var>
70 * @param icon The {@link Drawable} used for the icon.
73 public ContextMenu setHeaderIcon(Drawable icon);
77 * <var>view</var>. This replaces the header title and icon (and thos
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
SubMenuBuilder.java 85 public SubMenu setIcon(Drawable icon) {
86 mItem.setIcon(icon);
95 public SubMenu setHeaderIcon(Drawable icon) {
96 return (SubMenu) super.setHeaderIconInt(icon);
  /frameworks/base/services/core/java/com/android/server/am/
LaunchWarningWindow.java 45 ImageView icon = (ImageView)findViewById(R.id.replace_app_icon); local
46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
50 icon = (ImageView)findViewById(R.id.original_app_icon);
51 icon.setImageDrawable(cur.info.applicationInfo.loadIcon(context.getPackageManager()));

Completed in 1751 milliseconds

1 2 34 5 6 7 8 91011>>