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

1 23 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/accounts/
ProviderPreference.java 35 Context context, String accountType, Drawable icon, CharSequence providerName) {
38 setIcon(icon);
  /external/qemu/distrib/sdl-1.2.15/test/
testwm.c 65 SDL_Surface *icon; local
72 /* Load the icon surface */
73 icon = SDL_LoadBMP(file);
74 if ( icon == NULL ) {
80 if ( (icon->w%8) != 0 ) {
81 fprintf(stderr, "Icon width must be a multiple of 8!\n");
82 SDL_FreeSurface(icon);
88 if ( icon->format->palette == NULL ) {
89 fprintf(stderr, "Icon must have a palette!\n");
90 SDL_FreeSurface(icon);
337 SDL_Surface *icon; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 106 public boolean set(StatusBarIcon icon) {
108 && streq(mIcon.iconPackage, icon.iconPackage)
109 && mIcon.iconId == icon.iconId;
111 && mIcon.iconLevel == icon.iconLevel;
113 && mIcon.visible == icon.visible;
115 && mIcon.number == icon.number;
116 mIcon = icon.clone();
117 setContentDescription(icon.contentDescription);
122 setImageLevel(icon.iconLevel);
126 if (icon.number > 0 && getContext().getResources().getBoolean
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java 93 mLanguageSwitchKey.icon = mSavedLanguageSwitchKey.icon;
100 mLanguageSwitchKey.icon = null;
117 mEnterKey.icon = null;
122 mEnterKey.icon = null;
126 mEnterKey.icon = res.getDrawable(R.drawable.sym_keyboard_search);
131 mEnterKey.icon = null;
135 mEnterKey.icon = res.getDrawable(R.drawable.sym_keyboard_return);
141 void setSpaceIcon(final Drawable icon) {
143 mSpaceKey.icon = icon
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 67 * icon bitmaps that are stored in the database (which were 74x74 pixels at hdpi size)
70 static Bitmap createIconBitmap(Bitmap icon, Context context) {
73 int sourceWidth = icon.getWidth();
74 int sourceHeight = icon.getHeight();
76 // Icon is bigger than it should be; clip it (solves the GB->ICS migration case)
77 return Bitmap.createBitmap(icon,
82 // Icon is the right size, no need to change it
83 return icon;
85 // Icon is too small, render to a larger bitmap
87 return createIconBitmap(new BitmapDrawable(resources, icon), context)
    [all...]
  /external/chromium_org/chrome/browser/status_icons/
desktop_notification_balloon.h 25 void DisplayBalloon(const gfx::ImageSkia& icon,
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item_tab.h 26 const gfx::Image* icon,
  /external/chromium_org/chrome/browser/ui/extensions/
extension_install_ui_default.h 21 SkBitmap* icon) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/
elevation_icon_setter.h 17 // On Windows, badges a button with a "UAC shield" icon to indicate that
27 void SetButtonIcon(scoped_ptr<SkBitmap> icon);
  /external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/gen/org/webrtc/voiceengine/test/
R.java 14 public static final int icon=0x7f020000; field in class:R.drawable
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxwm.c 33 void NX_SetCaption (_THIS, const char * title, const char * icon)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Item.java 33 /** Icon of the item */
34 public Bitmap icon; field in class:Item
39 this.icon = null;
45 icon = in.readParcelable(null);
57 dest.writeParcelable(icon, flags);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
Action.java 68 * @param icon The icon to display for the Action.
70 public Action(long id, CharSequence label1, CharSequence label2, Drawable icon) {
74 setIcon(icon);
120 * Set the icon drawable for this Action.
122 public final void setIcon(Drawable icon) {
123 mIcon = icon;
127 * Returns the icon drawable for this Action.
146 sb.append("(action icon)");
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 32 * Icon list view adapter to show the list of STK items.
54 if (!mIcosSelfExplanatory || (mIcosSelfExplanatory && item.icon == null)) {
57 ImageView imageView = ((ImageView) convertView.findViewById(R.id.icon));
58 if (item.icon == null) {
61 imageView.setImageBitmap(item.icon);
  /external/chromium_org/ash/frame/caption_buttons/
frame_size_button_unittest.cc 67 for (int icon = 0; icon < CAPTION_BUTTON_ICON_COUNT; ++icon) {
69 static_cast<CaptionButtonIcon>(icon),
295 // - The icon displayed by all of the caption buttons is reset.
297 EXPECT_EQ(CAPTION_BUTTON_ICON_MINIMIZE, minimize_button()->icon());
298 EXPECT_EQ(CAPTION_BUTTON_ICON_CLOSE, close_button()->icon());
309 EXPECT_EQ(CAPTION_BUTTON_ICON_LEFT_SNAPPED, minimize_button()->icon());
310 EXPECT_EQ(CAPTION_BUTTON_ICON_RIGHT_SNAPPED, close_button()->icon());
318 EXPECT_EQ(CAPTION_BUTTON_ICON_LEFT_SNAPPED, minimize_button()->icon());
    [all...]
  /external/chromium_org/ui/base/dragdrop/
drag_utils.cc 33 const gfx::ImageSkia& icon)
34 : CanvasImageSource(CalculateSize(icon), false),
36 icon_(icon) {
45 // Paint the icon.
69 gfx::Size CalculateSize(const gfx::ImageSkia& icon) const {
72 const int height = gfx::FontList().GetHeight() + icon.height() +
86 const gfx::ImageSkia& icon,
89 gfx::CanvasImageSource* source = new FileDragImageSource(file_name, icon);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/share/
ShareDialogAdapter.java 51 ImageView icon = (ImageView) view.findViewById(R.id.icon); local
54 icon.setImageDrawable(loadIconForResolveInfo(getItem(position)));
63 Drawable icon = res.getDrawable(iconRes); local
64 return icon;
67 // Could not find the icon. loadIcon call below will return the default app icon.
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.h 41 // and icon.
73 const gfx::ImageSkia& icon() const { return icon_; } function in class:chromeos::KioskAppData
94 // Helper to set the cached data using a SkBitmap icon.
95 void SetCache(const std::string& name, const SkBitmap& icon);
98 void OnExtensionIconLoaded(const gfx::Image& icon);
102 const gfx::ImageSkia& icon);
106 void OnWebstoreParseSuccess(const SkBitmap& icon);
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_list_chromeos.cc 54 gfx::Image icon = gfx::Image((*it)->GetImage()); local
55 if (!switches::IsNewProfileManagement() && !icon.IsEmpty()) {
57 icon = profiles::GetAvatarIconForMenu(icon, true);
60 AvatarMenu::Item* item = new AvatarMenu::Item(i, i, icon);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTabSpec.java 24 private Drawable icon; field in class:ShadowTabSpec
52 return this.icon;
75 public TabHost.TabSpec setIndicator(CharSequence label, Drawable icon) {
77 this.icon = icon;
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawable01.java 27 int[] icon = { field in class:VectorDrawable01
56 final Button []bArray = new Button[icon.length];
58 for (int i = 0; i < icon.length; i++) {
62 button.setBackgroundResource(icon[i]);
65 vd.setAlpha((i + 1) * (0xFF / (icon.length + 1)));
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAddItemInfo.java 56 int icon; field in class:PendingAddWidgetInfo
75 icon = i.icon;
89 icon = copy.icon;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
resourcesPanel.css 66 .resources.panel .sidebar .icon {
224 .resource-sidebar-tree-item .icon {
228 .children.small .resource-sidebar-tree-item .icon {
232 .resource-sidebar-tree-item.resources-type-image .icon {
239 .resources-type-image .image-resource-icon-preview {
252 .children.small .resource-sidebar-tree-item.resources-type-image .icon {
257 .children.small .resources-type-image .image-resource-icon-preview {
266 .resource-sidebar-tree-item.resources-type-document .icon {
270 .children.small .resource-sidebar-tree-item.resources-type-document .icon {
274 .resource-sidebar-tree-item.resources-type-stylesheet .icon {
    [all...]
  /frameworks/base/core/java/android/view/
PointerIcon.java 33 * Represents an icon that can be used as a mouse pointer.
44 /** Style constant: Custom icon with a user-supplied bitmap. */
47 /** Style constant: Null icon. It has no bitmap. */
50 /** Style constant: Arrow icon. (Default mouse pointer) */
53 /** {@hide} Style constant: Spot hover icon for touchpads. */
56 /** {@hide} Style constant: Spot touch icon for touchpads. */
59 /** {@hide} Style constant: Spot anchor icon for touchpads. */
66 // The default pointer icon.
82 * Gets a special pointer icon that has no bitmap.
84 * @return The null pointer icon
139 PointerIcon icon = new PointerIcon(style); local
167 PointerIcon icon = new PointerIcon(STYLE_CUSTOM); local
200 PointerIcon icon = new PointerIcon(STYLE_CUSTOM); local
    [all...]
  /frameworks/base/core/java/android/service/notification/
Condition.java 49 public final int icon; field in class:Condition
53 public Condition(Uri id, String summary, String line1, String line2, int icon,
64 this.icon = icon;
89 dest.writeInt(icon);
101 .append(",icon=").append(icon)
132 && other.icon == icon
139 return Objects.hash(id, summary, line1, line2, icon, state, flags)
    [all...]

Completed in 533 milliseconds

1 23 4 5 6 7 8 91011>>