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

1 2 34 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 268 void QZ_SetCaption (_THIS, const char *title, const char *icon) {
277 if ( icon != NULL ) {
278 string = [ [ NSString alloc ] initWithUTF8String:icon ];
416 void QZ_SetIcon (_THIS, SDL_Surface *icon, Uint8 *mask)
429 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 ];
432 SDL_memset(pixels, 0, 4*icon->w*icon->h); /* make the background, which will survive in colorkeyed areas, completely transparent */
439 mergedSurface = SDL_CreateRGBSurfaceFrom(pixels, icon->w, icon->h, 32, 4*icon->w, BYTEORDER_DEPENDENT_RGBA_MASKS)
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.h 64 // Deliver all the icon notifications
70 // Queue of page urls that have received an icon.
77 SkBitmap* webcoreImageToSkBitmap(WebCore::Image* icon);
78 jobject webcoreImageToJavaBitmap(JNIEnv* env, WebCore::Image* icon);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
ShirtPocket.java 143 Bitmap icon = mClipping.getIcon(); local
145 if (icon != null) {
146 setImageBitmap(icon);
164 final Bitmap icon = clip.getIcon(); local
166 if (icon != null) {
169 shadowSize.set(icon.getWidth(), icon.getHeight());
173 canvas.drawBitmap(icon, 0, 0, new Paint());
212 final Bitmap icon = clip.getIcon();
214 if (icon != null)
    [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...]
  /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/chrome/browser/tab_contents/
simple_alert_infobar_delegate.h 20 SkBitmap* icon, // May be NULL.
  /external/chromium/chrome/browser/ui/
browser_dialogs.h 41 // is the browser window which will host the bubble. |icon| is the install
42 // icon of the extension.
45 const SkBitmap& icon,
  /external/chromium/chrome/browser/ui/gtk/
custom_drag.h 26 explicit CustomDrag(gfx::Image* icon, int code_mask, GdkDragAction action);
62 // It is safe to call this multiple times with different values of |icon|.
65 gfx::Image* icon);
69 static void BeginDrag(const DownloadItem* item, gfx::Image* icon);
72 DownloadItemDrag(const DownloadItem* item, gfx::Image* icon);
  /external/chromium/chrome/browser/ui/webui/
fileicon_source.h 38 gfx::Image* icon);
  /external/webkit/Source/WebCore/notifications/
NotificationContents.h 46 KURL icon() const { return m_icon; } function in class:WebCore::NotificationContents
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IconGtk.cpp 31 #include "Icon.h"
42 Icon::Icon()
47 Icon::~Icon()
56 Lookup an appropriate icon according to either the Icon Naming Spec
57 or conventional Gnome icon names respectively.
59 See http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.htm
103 RefPtr<Icon> icon = adoptRef(new Icon); local
    [all...]
  /external/webkit/Source/WebKit/mac/History/
WebHistoryItem.h 119 @method icon
120 @abstract The favorite icon of the page represented by this item.
121 @discussion This icon returned will be determined by the WebKit.
122 @result The icon associated with this item's URL.
124 - (NSImage *)icon;
  /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/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()));
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
Input.java 30 public Bitmap icon; field in class:Input
44 icon = null;
59 icon = in.readParcelable(null);
78 dest.writeParcelable(icon, 0);
100 boolean setIcon(Bitmap Icon) { return true; }
TextMessage.java 26 public Bitmap icon = null; field in class:TextMessage
39 icon = in.readParcelable(null);
54 dest.writeParcelable(icon, 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 74 for (Image icon : mIconMap.values()) {
76 if (icon != null) {
77 icon.dispose();
81 for (Image icon : mUrlMap.values()) {
83 if (icon != null) {
84 icon.dispose();
91 * Returns an Image for a given icon name.
95 * @param osName The leaf name, without the extension, of an existing icon in the
96 * editor's "icons" directory. If it doesn't exists, a default icon will be
104 * Returns an Image for a given icon name
118 Image icon = mIconMap.get(key); local
193 Image icon = mIconMap.get(key); local
    [all...]
  /external/chromium/chrome/browser/status_icons/
status_tray_unittest.cc 39 // Make sure that removing an icon removes it from the list.
44 StatusIcon* icon = tray.CreateStatusIcon(); local
46 tray.RemoveStatusIcon(icon);
49 tray.RemoveStatusIcon(icon);
  /external/webkit/Source/WebCore/platform/graphics/win/
IconWin.cpp 23 #include "Icon.h"
39 Icon::Icon(HICON icon)
40 : m_hIcon(icon)
42 ASSERT(icon);
45 Icon::~Icon()
51 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionView.java 73 // override default icon (when no other available) with default source icon
150 // Set the icon even if the drawable is null, since we need to clear any
151 // previous icon.
186 if (DBG) Log.d(TAG, "getting icon Id=" + uniqueIconId);
187 NowOrLater<Drawable> icon = source.getIcon(sourceIconId); local
188 if (icon.haveNow()) {
190 handleNewDrawable(icon.getNow(), uniqueIconId, source);
192 // make sure old icon is not visible while new one is loaded
195 icon.getLater(new Consumer<Drawable>()
    [all...]
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.java 106 * match's icon. From the "icon" attribute or, if not set, 0.
108 public int icon; field in class:ResolveInfo
111 * Optional -- if non-null, the {@link #labelRes} and {@link #icon}
160 * Retrieve the current graphical icon associated with this resolution. This
161 * will call back on the given PackageManager to load the icon from
164 * @param pm A PackageManager from which the icon can be loaded; usually
167 * @return Returns a Drawable containing the resolution's icon. If the
168 * item does not have an icon, the default activity icon is returned
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 114 private Bitmap createIconBitmap(Drawable icon) {
118 if (icon instanceof PaintDrawable) {
119 PaintDrawable painter = (PaintDrawable) icon;
122 } else if (icon instanceof BitmapDrawable) {
124 BitmapDrawable bitmapDrawable = (BitmapDrawable) icon;
130 int sourceWidth = icon.getIntrinsicWidth();
131 int sourceHeight = icon.getIntrinsicHeight();
163 // draw a big box for the icon for debugging
171 mOldBounds.set(icon.getBounds());
172 icon.setBounds(left, top, left+width, top+height)
    [all...]
  /frameworks/base/services/input/
SpriteController.cpp 134 update.state.surfaceWidth = update.state.icon.bitmap.width();
135 update.state.surfaceHeight = update.state.icon.bitmap.height();
152 int32_t desiredWidth = update.state.icon.bitmap.width();
153 int32_t desiredHeight = update.state.icon.bitmap.height();
216 surfaceCanvas.drawBitmap(update.state.icon.bitmap, 0, 0, &paint);
218 if (surfaceInfo.w > uint32_t(update.state.icon.bitmap.width())) {
220 surfaceCanvas.drawRectCoords(update.state.icon.bitmap.width(), 0,
221 surfaceInfo.w, update.state.icon.bitmap.height(), paint);
223 if (surfaceInfo.h > uint32_t(update.state.icon.bitmap.height())) {
225 surfaceCanvas.drawRectCoords(0, update.state.icon.bitmap.height()
    [all...]
  /external/chromium-trace/src/shared/css/
tree.css 24 .expand-icon {
39 html[dir=rtl] .expand-icon {
43 .tree-item[expanded] > .tree-row > .expand-icon {
49 .tree-row .expand-icon {
53 .tree-row[may-have-children] .expand-icon {
57 .tree-row[has-children=false] .expand-icon {
124 tree[icon-visibility=hidden] .tree-label {
129 tree[icon-visibility=parent] .tree-label,
130 tree[icon-visibility=parent] .tree-row[has-children=false] > .tree-label {

Completed in 487 milliseconds

1 2 34 5 6 7 8 91011>>