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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_syswm_c.h 27 extern void QT_SetWMCaption(_THIS, const char *title, const char *icon);
SDL_syswm.cc 30 void QT_SetWMCaption(_THIS, const char *title, const char *icon)
  /sdk/eclipse/scripts/
_mk_icons.sh 3 function icon() { function
8 icon M green manifest
9 icon S blue sharedUserId
10 icon S red signature
11 icon P green package
13 icon I green instrumentation
14 icon F green functionalTest
15 icon H green handleProfiling
16 icon I green icon
    [all...]
  /external/chromium/chrome/browser/status_icons/
status_icon_unittest.cc 28 TestStatusIcon icon; local
32 icon.AddObserver(&observer);
33 icon.DispatchClickEvent();
34 icon.AddObserver(&observer2);
35 icon.DispatchClickEvent();
36 icon.RemoveObserver(&observer);
37 icon.RemoveObserver(&observer2);
42 TestStatusIcon icon; local
45 icon.AddObserver(&observer);
46 icon.DispatchClickEvent()
    [all...]
status_tray.cc 26 StatusIcon* icon = CreatePlatformStatusIcon(); local
27 if (icon)
28 status_icons_.push_back(icon);
29 return icon;
32 void StatusTray::RemoveStatusIcon(StatusIcon* icon) {
34 status_icons_.begin(), status_icons_.end(), icon);
  /external/bluetooth/glib/gio/tests/
g-icon.c 33 GIcon *icon; local
49 uri = "file:///some/native/path/to/an/icon.png";
51 icon = g_file_icon_new (location);
52 data = g_icon_to_string (icon);
53 g_assert_cmpstr (data, ==, "/some/native/path/to/an/icon.png");
56 g_assert (g_icon_equal (icon, icon2));
58 g_object_unref (icon);
62 uri = "file:///some/native/path/to/an/icon with spaces.png";
64 icon = g_file_icon_new (location);
65 data = g_icon_to_string (icon);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/status_icons/
status_tray_gtk_unittest.cc 28 // Create an icon, set the images and tooltip, then shut it down.
30 StatusIcon* icon = tray.CreateStatusIcon(); local
33 icon->SetImage(*bitmap);
34 icon->SetPressedImage(*bitmap);
35 icon->SetToolTip(ASCIIToUTF16("tool tip"));
38 icon->SetContextMenu(menu);
42 // Create an icon, send a fake click event, make sure observer is called.
44 StatusIconGtk* icon = static_cast<StatusIconGtk*>(tray.CreateStatusIcon()); local
46 icon->AddObserver(&observer);
49 icon->OnClick(NULL)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
CommandParams.java 36 boolean setIcon(Bitmap icon) { return true; }
52 boolean setIcon(Bitmap icon) {
53 if (icon != null && textMsg != null) {
54 textMsg.icon = icon;
74 boolean setIcon(Bitmap icon) {
75 if (icon != null && confirmMsg != null) {
76 confirmMsg.icon = icon;
94 boolean setIcon(Bitmap icon) {
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxwm_c.h 31 extern void NX_SetCaption (_THIS, const char * title, const char * icon) ;
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemwm_c.h 34 extern void GEM_SetCaption(_THIS, const char *title, const char *icon);
35 extern void GEM_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask);
SDL_gemwm.c 43 void GEM_SetCaption(_THIS, const char *title, const char *icon)
50 if (icon) {
51 GEM_icon_name = icon;
56 void GEM_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask)
67 if (icon == NULL) {
71 /* Convert icon to the screen format */
72 sicon = SDL_CreateRGBSurface(SDL_SWSURFACE, icon->w, icon->h,
80 bounds.w = icon->w;
81 bounds.h = icon->h
    [all...]
  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_win_unittest.cc 28 // Create an icon, set the images, tooltip, and context menu, then shut it
31 StatusIcon* icon = tray.CreateStatusIcon(); local
34 icon->SetImage(*bitmap);
35 icon->SetPressedImage(*bitmap);
36 icon->SetToolTip(ASCIIToUTF16("tool tip"));
39 icon->SetContextMenu(menu);
43 // Create an icon, send a fake click event, make sure observer is called.
45 StatusIconWin* icon = static_cast<StatusIconWin*>(tray.CreateStatusIcon()); local
47 icon->AddObserver(&observer);
50 tray.WndProc(NULL, icon->message_id(), icon->icon_id(), WM_LBUTTONDOWN)
    [all...]
  /external/sonivox/jet_tools/JetCreator/
img_Paste.py 38 icon = EmptyIcon()
39 icon.CopyFromBitmap(getBitmap())
40 return icon
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxwm_c.h 27 extern void CGX_SetCaption(_THIS, const char *title, const char *icon);
28 extern void CGX_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask);
SDL_cgxwm.c 36 void CGX_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask)
41 void CGX_SetCaption(_THIS, const char *title, const char *icon)
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_syswm_c.h 30 extern void WIN_SetWMIcon(_THIS, SDL_Surface *icon, Uint8 *mask);
31 extern void WIN_SetWMCaption(_THIS, const char *title, const char *icon);
  /external/bluetooth/glib/gio/
gthemedicon.c 36 * @short_description: Icon theming support
40 * #GThemedIcon is an implementation of #GIcon that supports icon themes.
41 * #GThemedIcon contains a list of all of the icons present in an icon
43 * not provide actual pixmaps for icons, just the icon names.
82 GThemedIcon *icon = G_THEMED_ICON (object); local
87 g_value_set_boxed (value, icon->names);
91 g_value_set_boolean (value, icon->use_default_fallbacks);
105 GThemedIcon *icon = G_THEMED_ICON (object); local
117 if (icon->names)
118 g_strfreev (icon->names)
291 GIcon *icon = icon; local
488 GIcon *icon; local
    [all...]
gfileicon.c 42 * #GFileIcon specifies an icon by pointing to an image file
43 * to be used as icon.
49 static void g_file_icon_load_async (GLoadableIcon *icon,
85 GFileIcon *icon = G_FILE_ICON (object); local
90 g_value_set_object (value, icon->file);
104 GFileIcon *icon = G_FILE_ICON (object); local
109 icon->file = G_FILE (g_value_dup_object (value));
120 GFileIcon *icon; local
122 icon = G_FILE_ICON (object);
124 g_object_unref (icon->file)
227 GIcon *icon; local
287 GLoadableIcon *icon; member in struct:__anon2355
    [all...]
gemblem.c 42 * having an emblem, which is an icon with additional properties.
55 GIcon *icon; member in struct:_GEmblem
85 g_value_set_object (value, emblem->icon);
108 emblem->icon = g_value_get_object (value);
126 g_object_unref (emblem->icon);
151 g_param_spec_object ("icon",
152 P_("The icon of the emblem"),
153 P_("The actual icon of the emblem"),
166 * @icon: a GIcon containing the icon
315 GIcon *icon; local
    [all...]
gicon.c 48 * serializing an icon to and from strings.
50 * #GIcon does not provide the actual pixmap for the icon as this is out
52 * of an icon (see #GThemedIcon), or the path to an icon (see #GLoadableIcon).
114 * @icon: #gconstpointer to an icon object.
116 * Gets a hash for an icon.
118 * Returns: a #guint containing a hash for the @icon, suitable for
122 g_icon_hash (gconstpointer icon)
126 g_return_val_if_fail (G_IS_ICON (icon), 0)
304 GIcon *icon; local
446 GIcon *icon; local
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification_factory.h 23 const GURL& icon, const string16& title,
29 const GURL& icon, const string16& title,
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_syswm_c.h 29 extern void BE_SetWMCaption(_THIS, const char *title, const char *icon);
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_wm_c.h 30 extern void ph_SetCaption(_THIS, const char *title, const char *icon);
31 extern void ph_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
IconChromium.cpp 32 #include "Icon.h"
39 Icon::Icon(PassRefPtr<PlatformIcon> icon)
40 : m_icon(icon)
44 Icon::~Icon()
48 void Icon::paint(GraphicsContext* context, const IntRect& rect)
53 // An Icon doesn't know the color space of the file upload control.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/
SearchableItemPreference.java 28 * A CheckBoxPreference with an icon added.
39 public void setIcon(Drawable icon) {
40 mIcon = icon;
46 ImageView icon = (ImageView) view.findViewById(R.id.icon); local
47 icon.setImageDrawable(mIcon);

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011>>