/frameworks/base/docs/html/guide/basics/ |
building-blocks.jd | 63 <dd>A Notification is a small icon that appears in the status bar. Users 64 can interact with this icon to receive information. The most well-known
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ITelephony.aidl | 225 * Returns the CDMA ERI icon index to display 230 * Returns the CDMA ERI icon mode,
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/ |
CommandParamsFactory.java | 196 // set each item icon. 197 for (Bitmap icon : icons) { 198 mCmdParams.setIcon(icon); 282 // parse icon identifier 377 // parse icon identifier 446 // parse icon identifier 704 // parse icon identifier 782 // parse icon identifier
|
/packages/apps/Bluetooth/ |
AndroidManifest.xml | 24 android:icon="@drawable/bt_share" 105 android:icon="@drawable/ic_launcher_folder_bluetooth"
|
/packages/apps/Email/src/com/android/email/activity/ |
AccountShortcutPicker.java | 141 * <li>{@link android.content.Intent#EXTRA_SHORTCUT_ICON} The shortcut's icon, if provided as a 168 Parcelable iconResource = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);
|
/packages/apps/Launcher2/ |
AndroidManifest.xml | 69 android:icon="@drawable/ic_launcher_home"> 90 android:icon="@drawable/ic_launcher_wallpaper"
|
/packages/apps/Phone/res/layout/ |
incall_screen.xml | 78 double-tap the "lock" icon to unlock the dialpad.) --> 86 here to center the lock icon exactly in the middle of the screen.
|
/packages/apps/QuickSearchBox/ |
AndroidManifest.xml | 37 android:icon="@drawable/search_app_icon" 97 android:icon="@drawable/google_icon"
|
/sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/internal/repository/ |
RepoSourceTest.java | 138 " <application android:label=\"@string/app_name\" android:icon=\"@drawable/icon\"/>" +
|
/external/webkit/WebKit/android/WebCoreSupport/ |
FrameLoaderClientAndroid.cpp | 251 // Try to obtain the icon image. 252 WebCore::Image* icon = WebCore::iconDatabase()->iconForPageURL( local 255 if (!icon) { 258 icon = WebCore::iconDatabase()->iconForPageURL( 261 // There is a bug in webkit where cancelling an icon load is treated as a 262 // failure. When this is fixed, we can ASSERT again that we have an icon. 263 if (icon) { 264 LOGV("Received icon (%p) for %s", icon, 266 m_webFrame->didReceiveIcon(icon); [all...] |
/frameworks/base/services/java/com/android/server/status/ |
StatusBarPolicy.java | 326 // Icon lit when clock is set 331 // If sync is active the SyncActive icon is displayed. If sync is not active but 332 // sync is failing the SyncFailing icon is displayed. Otherwise neither are displayed. 337 // Icon lit when TTY mode is enabled 545 // load config to determine if to distinguish Hspa data icon 644 // Don't display sync failing icon: BUG 1297963 Set sync error timeout to "never" 649 mBatteryData.iconId = intent.getIntExtra("icon-small", 0); [all...] |
/packages/apps/Contacts/src/com/android/contacts/ui/ |
QuickContactWindow.java | 660 * Find the QuickContact-specific presence icon for showing in chiclets. 699 * string description and icon. 1001 public SoftReference<Drawable> icon; field in class:QuickContactWindow.ResolveCache.Entry 1035 final Drawable icon = bestResolve.loadIcon(mPackageManager); local 1354 final Drawable icon = mResolveCache.getIcon(firstInfo); local [all...] |
/development/apps/Development/src/com/android/development/ |
AccountsTester.java | 84 ImageView icon; field in class:AccountsTester.AccountArrayAdapter.ViewHolder 105 holder.icon = (ImageView) convertView.findViewById( 117 holder.icon.setVisibility(View.INVISIBLE); 123 holder.icon.setImageDrawable(authContext.getResources().getDrawable(desc.iconId)); 124 holder.icon.setVisibility(View.VISIBLE);
|
/frameworks/base/core/java/android/webkit/ |
WebChromeClient.java | 44 * @param icon A Bitmap containing the favicon for the current page. 46 public void onReceivedIcon(WebView view, Bitmap icon) {} 49 * Notify the host application of the url for an apple-touch-icon. 51 * @param url The icon url. 52 * @param precomposed True if the url is for a precomposed touch icon.
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppNotification.java | 266 n.icon = android.R.drawable.stat_sys_upload; 269 n.icon = android.R.drawable.stat_sys_download; 348 outNoti.icon = android.R.drawable.stat_sys_upload_done; 395 inNoti.icon = android.R.drawable.stat_sys_download_done; 433 n.icon = R.drawable.bt_incomming_file_notification;
|
/packages/apps/Browser/src/com/android/browser/ |
Tab.java | 125 // the lock icon type and previous lock icon type for the tab 473 // If we start a touch icon load and then load a new page, we don't 474 // want to cancel the current touch icon loader. But, we do want to 475 // create a new one when the touch icon url is known. 540 * Updates the lock icon. This method is called when we discover another 542 * we update the icon type, we do not update the lock icon itself until [all...] |
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
PowerUsageDetail.java | 161 // Use default icon 193 ImageView iconImage = (ImageView) findViewById(R.id.icon); 461 //Drawable icon = defaultActivityIcon; 465 //if (ai.icon != 0) { 466 // icon = ai.loadIcon(pm);
|
/packages/apps/Music/src/com/android/music/ |
AlbumBrowserActivity.java | 411 menu.add(0, PARTY_SHUFFLE, 0, R.string.party_shuffle); // icon will be set in onPrepareOptionsMenu() 527 ImageView icon; field in class:AlbumBrowserActivity.AlbumListAdapter.ViewHolder 595 vh.icon = (ImageView) v.findViewById(R.id.icon); 596 vh.icon.setBackgroundDrawable(mDefaultAlbumIcon); 597 vh.icon.setPadding(0, 0, 1, 0); 622 ImageView iv = vh.icon;
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherProvider.java | 227 "icon BLOB," + 286 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON); 305 values.put(LauncherSettings.Favorites.ICON, c.getBlob(iconIndex)); 493 + "SET icon=? WHERE _id=?"); 495 c = db.rawQuery("SELECT _id, icon FROM favorites WHERE iconType=" + 499 final int iconIndex = c.getColumnIndexOrThrow(Favorites.ICON); 519 Log.e(TAG, "Failed normalizing icon " + id, e); 521 Log.e(TAG, "Also failed normalizing icon " + id); [all...] |
/development/pdk/docs/source/ |
using-eclipse.jd | 183 <p>You may need to open the Debug perspective (next to the "Java" perspective icon in the upper-right, click the small "Open Perspective" icon and select "Debug"). Once you do, you should see a list of threads; if you select one and break it (by clicking the "pause" icon), it should show the stack trace, source file, and line where execution is at. Breakpoints and whatnot should all work.
|
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/ |
SDL_QuartzVideo.h | 97 SDL_Surface *resize_icon; /* icon for the resize badge, we have to draw it by hand */ 212 void QZ_SetCaption (_THIS, const char *title, const char *icon); 213 void QZ_SetIcon (_THIS, SDL_Surface *icon, Uint8 *mask);
|
/external/sonivox/jet_tools/JetCreator/ |
img_Cut.py | 101 icon = EmptyIcon()
102 icon.CopyFromBitmap(getBitmap())
103 return icon
|
img_Save.py | 96 icon = EmptyIcon()
97 icon.CopyFromBitmap(getBitmap())
98 return icon
|
/external/webkit/WebKit/mac/WebView/ |
WebFrameLoadDelegate.h | 102 @abstract Notifies the delegate that a page icon image for a frame has been received 104 @param image The icon image. Also known as a "favicon". 105 @param frame The frame for which a page icon has been received
|
/external/webkit/WebKit/win/Interfaces/ |
IWebFrameLoadDelegate.idl | 118 @abstract Notifies the delegate that a page icon image for a frame has been received 120 @param image The icon image. Also known as a "favicon". 121 @param frame The frame for which a page icon has been received
|