/external/sonivox/jet_tools/JetCreator/ |
img_New.py | 58 icon = EmptyIcon()
59 icon.CopyFromBitmap(getBitmap())
60 return icon
|
img_Print.py | 59 icon = EmptyIcon()
60 icon.CopyFromBitmap(getBitmap())
61 return icon
|
img_favicon.py | 58 icon = EmptyIcon()
59 icon.CopyFromBitmap(getBitmap())
60 return icon
|
/external/webkit/WebKit/qt/Api/ |
qwebframe.h | 111 Q_PROPERTY(QIcon icon READ icon) 141 QIcon icon() const;
|
qwebhistory.cpp | 58 \row \o icon() \o The icon associated with the page that was provided by the server. 126 \sa icon(), url(), lastVisited() 139 \sa title(), icon(), url() 151 Returns the icon associated with the history item. 155 QIcon QWebHistoryItem::icon() const function in class:QWebHistoryItem 158 return *d->item->icon()->nativeImageForCurrentFrame();
|
/frameworks/base/core/java/android/app/ |
NotificationManager.java | 32 * <li>A persistent icon that goes in the status bar and is accessible 45 * updated. For example, if you pass a new status bar icon, the old icon in
|
/frameworks/base/docs/html/guide/topics/ui/notifiers/ |
notifications.jd | 31 <p>A status bar notification adds an icon to the system's status bar 45 <p>The screenshot below shows the status bar with a notification icon on the left side.</p> 65 status bar notification, such as the status bar icon, the expanded message, and extra settings such 83 int icon = R.drawable.notification_icon; 87 Notification notification = new Notification(icon, tickerText, when); 145 <li>An icon for the status bar</li> 164 int icon = R.drawable.notification_icon; // icon from resources 175 Notification notification = new Notification(icon, tickerText, when); 319 The appropriate number is overlaid on top of the status bar icon [all...] |
/packages/apps/Browser/src/com/android/browser/ |
ActiveTabsPage.java | 158 Bitmap icon = tab.getFavicon(); local 159 if (icon != null) { 160 favicon.setImageBitmap(icon);
|
WebsiteSettingsActivity.java | 136 public void setIcon(Bitmap icon) { 137 mIcon = icon; 245 // (title, icon) for this origin from the bookmarks DB. 366 * Set the icon according to the usage 370 // We set the correct icon: 387 final ImageView icon; local 400 icon = (ImageView) view.findViewById(R.id.icon); 424 icon.setVisibility(View.VISIBLE); 432 icon.setImageBitmap(bmp) [all...] |
/packages/apps/DeskClock/ |
AndroidManifest.xml | 16 android:icon="@drawable/ic_launcher_alarmclock"> 23 android:icon="@drawable/ic_launcher_alarmclock" 110 android:icon="@drawable/ic_widget_analog_clock">
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssService.java | 55 private final int NOTIFY_ID = 1; // Identifies our service icon in the icon tray. 59 // Display an icon to show that the service is running. 69 // icon on the status bar. This will launch our RSS Reader app. 111 // When the service is destroyed, get rid of our persistent icon.
|
/frameworks/base/docs/html/ |
index.jd | 119 icon: image for carousel entry. cropped (height:70px, width:90px) 129 'icon':"sdk-small.png", 145 'icon':"tv_s.png", 161 'icon':"devphone-small.png", 176 'icon':"maps-small.png",
|
/packages/apps/Contacts/tests/src/com/android/contacts/ |
RecentCallsListActivityTests.java | 109 * Checks that the call icon is not visible for private and 155 * Checks the right icon is used to represent the call type 159 Bitmap icon = ((BitmapDrawable) mItem.iconView.getDrawable()).getBitmap(); local 160 assertEquals(mCallTypeIcons.get(type), icon); local 165 * icon's visibility matches the nature of the number.
|
/packages/apps/Settings/src/com/android/settings/quicklaunch/ |
BookmarkPicker.java | 83 private static final int sResourceIds[] = new int[] { R.id.title, R.id.icon }; 320 if (view.getId() == R.id.icon) { 321 Drawable icon = ((ResolveInfo) data).loadIcon(getPackageManager()); local 322 if (icon != null) { 323 ((ImageView) view).setImageDrawable(icon);
|
/packages/apps/Music/src/com/android/music/ |
ArtistAlbumBrowserActivity.java | 285 menu.add(0, PARTY_SHUFFLE, 0, R.string.party_shuffle); // icon will be set in onPrepareOptionsMenu() 580 ImageView icon; field in class:ArtistAlbumBrowserActivity.ArtistAlbumListAdapter.ViewHolder 643 ImageView iv = (ImageView) v.findViewById(R.id.icon); 651 vh.icon = (ImageView) v.findViewById(R.id.icon); 652 vh.icon.setPadding(0, 0, 1, 0); 665 vh.icon = (ImageView) v.findViewById(R.id.icon); 666 vh.icon.setBackgroundDrawable(mDefaultAlbumIcon); 667 vh.icon.setPadding(0, 0, 1, 0) [all...] |
/external/webkit/WebCore/platform/ |
MIMETypeRegistry.cpp | 78 supportedImageMIMETypes->add("image/vnd.microsoft.icon"); 79 supportedImageMIMETypes->add("image/x-icon"); 80 supportedImageResourceMIMETypes->add("image/vnd.microsoft.icon"); 81 supportedImageResourceMIMETypes->add("image/x-icon"); 118 "image/x-icon", // ico 142 "image/vnd.microsoft.icon", // ico 143 "image/x-icon", // ico
|
/packages/apps/Phone/src/com/android/phone/ |
NotificationMgr.java | 418 android.R.drawable.stat_notify_missed_call, // icon 503 // Display the appropriate "in-call" icon in the status bar, 533 // since even if the status icon hasn't changed, some *other* 538 if (DBG) log("- Updating status bar icon: " + resId); 545 // The icon in the expanded view is the same as in the status bar. 561 notification.icon = mInCallResId; 566 // Our custom view, which includes an icon (either "ongoing call" or 572 contentView.setImageViewResource(R.id.icon, expandedViewIcon); 773 resId, // icon [all...] |
/packages/apps/Stk/src/com/android/stk/ |
StkAppService.java | 572 // We assume this was initiated by the user pressing the tool kit icon 618 .findViewById(com.android.internal.R.id.icon); 619 if (msg.icon != null) { 620 iv.setImageBitmap(msg.icon); 708 notification.icon = com.android.internal.R.drawable.stat_notify_sim_toolkit; 709 // Set text and icon for the status bar and notification body. 715 if (msg.icon != null) { 716 contentView.setImageViewBitmap(com.android.internal.R.id.icon, 717 msg.icon); 721 com.android.internal.R.id.icon, [all...] |
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
XmlKeyboardLoader.java | 48 * The tag used to define a default key icon for enter/delete/space keys. It 237 /** Attribute tag of the key icon in a key. */ 238 private static final String XMLATTR_KEY_ICON = "icon"; 240 /** Attribute tag of the key's popup icon in a key. */ 392 Drawable icon = getDrawable(xrp, XMLATTR_KEY_ICON, null); local 395 if (null != icon && null != iconPopup) { 396 mSkbTemplate.addDefaultKeyIcons(keyCode, icon, 712 Drawable icon = getDrawable(xrp, XMLATTR_KEY_ICON, null); local 714 if (null == icon && null == keyLabel) { 724 rootState.mKeyIcon = icon; [all...] |
/external/webkit/WebCore/inspector/front-end/ |
inspector.css | 133 .toolbar-icon { 140 body.attached .toolbar-icon { 146 .toolbar-item:active .toolbar-icon { 150 body.attached .toolbar-item:active .toolbar-icon { 195 .toolbar-item.elements .toolbar-icon { 199 .toolbar-item.resources .toolbar-icon { 203 .toolbar-item.scripts .toolbar-icon { 207 .toolbar-item.timeline .toolbar-icon { 211 .toolbar-item.storage .toolbar-icon { 215 .toolbar-item.profiles .toolbar-icon { [all...] |
/frameworks/base/core/java/android/preference/ |
DialogPreference.java | 150 * Sets the icon of the dialog. This will be shown on subsequent dialogs. 152 * @param dialogIcon The icon, as a {@link Drawable}. 159 * Sets the icon (resource ID) of the dialog. This will be shown on 162 * @param dialogIconRes The icon, as a resource ID. 169 * Returns the icon to be shown on subsequent dialogs. 170 * @return The icon, as a {@link Drawable}.
|
/frameworks/base/services/java/com/android/server/ |
BatteryService.java | 61 * <p>"icon-small" - int, suggested small icon to use for this state</p> 351 int icon = getIcon(mBatteryLevel); local 358 intent.putExtra(BatteryManager.EXTRA_ICON_SMALL, icon); 372 " icon:" + icon );
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
ElementDescriptor.java | 180 * Returns an optional icon for the element. 182 * By default this tries to return an icon based on the XML name of the element. 186 * @return An icon for this element or null. 192 Image icon = factory.getIcon(mXmlName, color, shape); local 193 return icon != null ? icon : AdtPlugin.getAndroidLogo();
|
/build/tools/droiddoc/templates/assets/ |
carousel.js | 63 var icon = droid.icon; 75 img.setAttribute("src", toRoot + assetsRoot + "images/home/" + droid.icon);
|
/external/junit/src/junit/swingui/ |
TestSelector.java | 23 import javax.swing.Icon; 53 Icon fLeafIcon; 54 Icon fSuiteIcon;
|