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

1 2 3

  /frameworks/base/core/java/android/content/pm/
PackageItemInfo.java 71 * component's logo. Logos may be larger/wider than icons and are
73 * combination. From the "logo" attribute or, if not set, 0.
75 public int logo; field in class:PackageItemInfo
95 logo = orig.logo;
164 * Retrieve the current graphical logo associated with this item. This
165 * will call back on the given PackageManager to load the logo from
168 * @param pm A PackageManager from which the logo can be loaded; usually
171 * @return Returns a Drawable containing the item's logo. If the item
172 * does not have a logo, this method will return null
    [all...]
  /cts/tools/signature-tools/templates/
Styles.st 29 .logo {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/qemu/distrib/sdl-1.2.15/test/
testgl.c 19 /* Define this to be the name of the logo image to use with -logo */
452 int logo, int logocursor, int slowly, int bpp, float gamma, int noframe, int fsaa, int sync, int accel )
495 if ( logo && USE_DEPRECATED_OPENGLBLIT ) {
719 /* Draw 2D logo onto the 3D display */
720 if ( logo ) {
786 int i, logo, logocursor = 0; local
796 logo = 0;
803 if ( strcmp(argv[i], "-logo") == 0 ) {
804 logo = 1
    [all...]
  /system/core/init/
Android.mk 13 logo.c \
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.S 39 .include "../logo.include"
70 # PRINT LOGO
80 addi 9,DATA_BEGIN,(logo-data_begin)-1
84 # end of the logo
147 bl write_stdout # and print the logo
506 .include "../logo.lzss_new"
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MovieActivity.java 50 * The client of this activity can pass a logo bitmap in the intent (KEY_LOGO_BITMAP)
51 * to set the action bar logo so the playback process looks more seamlessly integrated with
57 public static final String KEY_LOGO_BITMAP = "logo-bitmap";
120 Bitmap logo = intent.getParcelableExtra(KEY_LOGO_BITMAP); local
121 if (logo != null) {
123 new BitmapDrawable(getResources(), logo));
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/
options.css 108 #logo {
  /external/libvorbis/doc/
footer.tex 7 %\TODO{display xifish.pdf, [Xiph.org logo]}
  /external/webkit/Source/WebCore/manual-tests/inspector-wrappers/
inspector-wrappers-test-utils.js 35 "<img id=logo src='../resources/webkit-background.png'" +
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 224 .logo {
245 html[dir=rtl] .logo,
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 10 .include "../logo.include"
38 # PRINT LOGO
49 add r3,r11,#(logo-data_begin)
50 @ r3 points to logo data
52 @ r8 points to logo end
120 bl write_stdout @ print the logo
483 .include "../logo.lzss_new"
  /frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
TransformTestActivity.java 56 Drawable drawable = getResources().getDrawable(R.drawable.logo);
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLObjectElement08.js 105 assertURIEquals("dataLink",null,null,null,"logo.gif",null,null,null,null,vdata);
object06.js 103 assertEquals("dataLink","./pix/logo.gif",vdata);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLObjectElement08.js 105 assertURIEquals("dataLink",null,null,null,"logo.gif",null,null,null,null,vdata);
object06.js 103 assertEquals("dataLink","./pix/logo.gif",vdata);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarImplICS.java 94 public void setLogo(Drawable logo) {
95 mActionBar.setLogo(logo);
ActionBar.java 73 * Standard navigation mode. Consists of either a logo or icon and title text with an optional
92 * Use logo instead of icon if available. This flag will cause appropriate navigation modes to
93 * use a wider logo in place of the standard icon.
102 * This includes logo and icon.
194 * Whether the home section shows an icon or logo is controlled by the display option {@link
207 * Whether the home section shows an icon or logo is controlled by the display option {@link
217 * Set the logo to display in the 'home' section of the action bar. The action bar will use a
218 * logo specified by its style or the activity logo by default.
220 * Whether the home section shows an icon or logo is controlled by the display option {@lin
    [all...]
  /frameworks/base/core/java/android/app/
ActionBar.java 61 * Standard navigation mode. Consists of either a logo or icon
82 * Use logo instead of icon if available. This flag will cause appropriate
83 * navigation modes to use a wider logo in place of the standard icon.
92 * navigation elements. This includes logo and icon.
198 * Whether the home section shows an icon or logo is controlled
213 * Whether the home section shows an icon or logo is controlled
224 * Set the logo to display in the 'home' section of the action bar.
225 * The action bar will use a logo specified by its style or the
226 * activity logo by default.
228 * Whether the home section shows an icon or logo is controlle
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
ll.S 12 .include "../logo.include"
42 # PRINT LOGO
56 mov $logo, %esi # %esi points to logo (for lodsb)
121 call write_stdout # print the logo
566 .include "../logo.lzss_new"
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.S 11 .include "../logo.include"
36 # PRINT LOGO
50 mov $logo, %esi # %esi points to logo (for lodsb)
113 call write_stdout # print the logo
566 .include "../logo.lzss_new"
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarView.java 607 * <p>As this encompasses the icon/logo, title and subtitle all in one, we need
735 public void setLogo(Drawable logo) {
736 mLogo = logo;
737 if (logo != null && (mDisplayOptions & ActionBar.DISPLAY_USE_LOGO) != 0) {
738 mHomeLayout.setIcon(logo);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarView.java 644 public void setLogo(Drawable logo) {
645 mLogo = logo;
646 if (logo != null && (mDisplayOptions & ActionBar.DISPLAY_USE_LOGO) != 0) {
647 mHomeLayout.setIcon(logo);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 200 XkbLogoDoodadRec logo; member in union:_XkbDoodad

Completed in 7277 milliseconds

1 2 3