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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/status_icons/
status_icon.h 25 // Sets the image associated with this status icon.
28 // Sets the image associated with this status icon when pressed.
31 // Sets the hover text for this status icon. This is also used as the label
32 // for the menu item which is created as a replacement for the status icon
34 // status icon (e.g. Ubuntu Unity).
38 // Depending on the platform it might not appear by the icon tray.
39 virtual void DisplayBalloon(const gfx::ImageSkia& icon,
43 // Set the context menu for this icon. The icon takes ownership of the passed
47 // 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 11 SkBitmap* icon) {
  /external/chromium_org/chrome/browser/ui/cocoa/
confirm_bubble_controller.h 42 - (NSImage*)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.
  /external/chromium_org/ui/base/dragdrop/
drag_utils.h 32 // portion will be truncated in the drag image. |icon| can be empty.
34 const gfx::ImageSkia& icon,
  /external/chromium_org/ui/message_center/
notifier_settings.h 101 // The icon image of the notifier. The extension icon or favicon.
102 gfx::Image icon; member in struct:message_center::Notifier
109 NotifierGroup(const gfx::Image& icon,
115 // Icon of a notifier group.
116 const gfx::Image icon; member in struct:message_center::NotifierGroup
136 // Called when an icon in the controller has been updated.
138 const gfx::Image& icon) = 0;
  /external/chromium_org/ui/message_center/views/
notification_button.h 26 void SetIcon(const gfx::ImageSkia& icon);
  /frameworks/base/core/java/android/webkit/
WebIconDatabase.java 23 * Functions for manipulating the icon database used by WebView.
43 * Called when the icon has been retrieved from the database and the
46 * @param icon The favicon for the given url.
48 public void onReceivedIcon(String url, Bitmap icon);
52 * Open a the icon database and store the icons in the given path.
53 * @param path The directory path where the icon database will be stored.
60 * Close the shared instance of the icon database.
74 * Request the Bitmap representing the icon for the given page
75 * url. If the icon exists, the listener will be called with the result.
91 * Retain the icon for the given page url
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuView.java 101 * Set the icon of this item view.
102 * @param icon The icon of this item. null to hide the icon.
104 public void setIcon(Drawable icon);
117 * Whether this item view shows an icon.
119 * @return Whether this item view shows an icon.
IconMenuItemView.java 93 * Initializes with the provided title and icon
95 * @param icon The icon of this item
97 void initialize(CharSequence title, Drawable icon) {
106 setIcon(icon);
177 public void setIcon(Drawable icon) {
178 mIcon = icon;
180 if (icon != null) {
182 /* Set the bounds of the icon since setCompoundDrawables needs it. */
183 icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight())
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
RotationLockTile.java 69 final int icon = portrait ? R.drawable.ic_qs_rotation_portrait local
72 state.icon = mContext.getDrawable(icon);
75 state.icon = res.getDrawable(R.drawable.ic_qs_rotation_unlocked);
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
BitmapDrawableDupe.java 30 protected int[] icon = { field in class:BitmapDrawableDupe
65 for (int i = 0; i < icon.length; i++) {
68 button.setBackgroundResource(icon[i]);
75 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
VectorDrawableStaticPerf.java 28 icon = new int[]{
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
SubMenuBuilder.java 88 public SubMenu setIcon(Drawable icon) {
89 mItem.setIcon(icon);
98 public SubMenu setHeaderIcon(Drawable icon) {
99 super.setHeaderIconInt(icon);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltip.java 64 Label icon = new Label(this, SWT.NONE); local
65 icon.setForeground(fg);
66 icon.setBackground(bg);
67 icon.setImage(node.getIcon());
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
RootInfo.java 50 public int icon; field in class:RootInfo
71 icon = 0;
91 icon = in.readInt();
110 out.writeInt(icon);
147 root.icon = getCursorInt(cursor, Root.COLUMN_ICON);
210 return IconUtils.loadPackageIcon(context, authority, icon);
218 return IconUtils.loadPackageIcon(context, authority, icon);
227 return IconUtils.loadPackageIcon(context, authority, icon);
236 return IconUtils.loadPackageIcon(context, authority, icon);
  /external/chromium_org/ui/gfx/
icon_util_unittest.cc 40 // function loads the icon and returns an HICON handle.
43 HICON icon = static_cast<HICON>(LoadImage(NULL, local
49 return icon;
61 // the expected icon sizes up to and including |max_icon_size|, and no other
62 // icons. If |max_icon_size| >= 256, this tests for a 256x256 PNG icon entry.
86 // First, use the Windows API to load the icon, a basic validity test.
87 HICON icon = LoadIconFromFile(icon_filename, kSmallIconWidth, local
89 EXPECT_NE(static_cast<HICON>(NULL), icon); local
90 if (icon != NULL)
91 ::DestroyIcon(icon);
145 HICON icon = LoadIconFromFile(icon_filename, local
169 HICON icon = NULL; local
306 HICON icon = IconUtil::CreateHICONFromSkBitmap(bitmap); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
Ticker.java 63 Drawable icon; field in class:Ticker.Segment
138 Segment(StatusBarNotification n, Drawable icon, CharSequence text) {
140 this.icon = icon;
185 // If what's being displayed has the same text and icon, just drop it
191 && n.getNotification().icon == seg.notification.getNotification().icon
199 final Drawable icon = StatusBarIconView.getIcon(mContext, local
200 new StatusBarIcon(n.getPackageName(), n.getUser(), n.getNotification().icon, n.getNotification().iconLevel, 0,
203 final Segment newSegment = new Segment(n, icon, text)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 79 * Returns a FastBitmapDrawable with the icon, accurately sized.
81 public static FastBitmapDrawable createIconDrawable(Bitmap icon) {
82 FastBitmapDrawable d = new FastBitmapDrawable(icon);
89 * Resizes an icon drawable to the correct icon size.
91 static void resizeIconDrawable(Drawable icon) {
92 icon.setBounds(0, 0, sIconTextureWidth, sIconTextureHeight);
114 * icon bitmaps that are stored in the database (which were 74x74 pixels at hdpi size)
117 static Bitmap createIconBitmap(Bitmap icon, Context context) {
120 int sourceWidth = icon.getWidth()
    [all...]
  /bootable/recovery/
screen_ui.h 26 // (shows an icon + a progress bar, text logging, menu, etc.)
35 void SetBackground(Icon icon);
64 Icon currentIcon;
112 void draw_background_locked(Icon icon);
  /cts/tests/tests/app/src/android/app/cts/
NotificationManagerTest.java 65 private void sendNotification(final int id, final int icon) {
67 icon, "No intent", System.currentTimeMillis());
  /developers/build/prebuilts/gradle/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/
EnableProfileActivity.java 43 findViewById(R.id.icon).setOnClickListener(this);
59 case R.id.icon: {
  /developers/samples/android/admin/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/
EnableProfileActivity.java 43 findViewById(R.id.icon).setOnClickListener(this);
59 case R.id.icon: {
  /development/samples/browseable/BasicManagedProfile/src/com.example.android.basicmanagedprofile/
EnableProfileActivity.java 43 findViewById(R.id.icon).setOnClickListener(this);
59 case R.id.icon: {

Completed in 417 milliseconds

1 2 3 4 5 67 8 91011>>