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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/view/menu/
MenuLayoutLandscape.java 17 package android.view.menu;
MenuLayoutPortrait.java 17 package android.view.menu;
  /external/clang/test/CodeGen/
pragma-pack-3.c 11 struct menu { struct in union:command
14 } menu; member in union:command
  /external/toybox/kconfig/
menu.c 12 struct menu rootmenu;
13 static struct menu **last_entry_ptr;
18 static void menu_warn(struct menu *menu, const char *fmt, ...)
22 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno);
46 struct menu *menu; local
48 menu = malloc(sizeof(*menu));
230 struct menu *menu, *last_menu; local
    [all...]
  /frameworks/base/core/java/android/widget/
MenuItemHoverListener.java 3 import com.android.internal.view.menu.MenuBuilder;
9 * An interface notified when a menu item is hovered. Useful for cases when hover should trigger
16 * Called when hover exits a menu item.
21 * @param menu the item's parent menu
22 * @param item the hovered menu item
24 void onItemHoverExit(@NonNull MenuBuilder menu, @NonNull MenuItem item);
27 * Called when hover enters a menu item.
29 * @param menu the item's parent menu
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
MenuItemHoverListener.java 20 import android.support.v7.view.menu.MenuBuilder;
24 * An interface notified when a menu item is hovered. Useful for cases when hover should trigger
31 * Called when hover exits a menu item.
36 * @param menu the item's parent menu
37 * @param item the hovered menu item
39 void onItemHoverExit(@NonNull MenuBuilder menu, @NonNull MenuItem item);
42 * Called when hover enters a menu item.
44 * @param menu the item's parent menu
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MenuInflaterTest.java 29 import android.view.Menu;
52 private Menu createMenu(Activity context) {
63 Menu menu = createMenu(mActivity); local
64 assertEquals(0, menu.size());
70 mMenuInflater.inflate(android.view.cts.R.menu.browser, menu);
71 assertNotNull(menu);
72 assertEquals(1, menu.size());
75 mMenuInflater.inflate(0, menu);
95 Menu menu = createMenu(mActivity); local
    [all...]
  /frameworks/support/design/src/android/support/design/internal/
NavigationSubMenu.java 20 import android.support.v7.view.menu.MenuBuilder;
21 import android.support.v7.view.menu.MenuItemImpl;
22 import android.support.v7.view.menu.SubMenuBuilder;
25 * This is a {@link SubMenuBuilder} that it notifies the parent {@link NavigationMenu} of its menu
32 public NavigationSubMenu(Context context, NavigationMenu menu, MenuItemImpl item) {
33 super(context, menu, item);
  /frameworks/base/core/tests/coretests/src/android/view/
ListContextMenu.java 26 import android.view.Menu;
98 public boolean onCreateOptionsMenu(Menu menu) {
99 MenuItem item = menu.add(0, 0, 0, "Really long menu item name");
103 SubMenu sm = menu.addSubMenu(0, 0, 0, "The 2nd item, a sub menu").setIcon(R.drawable.black_square_stretchable);
105 item.setTitleCondensed("Sub menu");
110 menu.add(0, 0, 0, "Item 3");
111 menu.add(0, 0, 0, "Item 4")
    [all...]
  /external/clang/www/
menu.css 5 [id=menu] {
10 /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
17 /* menu style */
20 #menu .submenu {
25 #menu label {
31 #menu a {
37 #menu a:visited {
  /external/compiler-rt/www/
menu.css 5 [id=menu] {
10 /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
17 /* menu style */
20 #menu .submenu {
25 #menu label {
31 #menu a {
37 #menu a:visited {
  /external/libcxx/www/
menu.css 5 [id=menu] {
10 /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
17 /* menu style */
20 #menu .submenu {
25 #menu label {
31 #menu a {
37 #menu a:visited {
  /external/libcxxabi/www/
menu.css 5 [id=menu] {
10 /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
17 /* menu style */
20 #menu .submenu {
25 #menu label {
31 #menu a {
37 #menu a:visited {
  /art/tools/ahat/src/
SubsetSelector.java 86 DocString menu = new DocString(); local
87 menu.appendFormat("(%d of %d elements shown - ", mLimit, all);
90 menu.appendLink(mQuery.with(mId, 0), DocString.text("show none"));
91 menu.append(" - ");
92 menu.appendLink(mQuery.with(mId, less), DocString.text("show less"));
93 menu.append(" - ");
95 menu.append("show none - show less - ");
99 menu.appendLink(mQuery.with(mId, more), DocString.text("show more"));
100 menu.append(" - ");
101 menu.appendLink(mQuery.with(mId, all), DocString.text("show all"))
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuPresenter.java 17 package com.android.internal.view.menu;
26 * A MenuPresenter is responsible for building views for a Menu object.
31 * Called by menu implementation to notify another component of open/close events.
35 * Called when a menu is closing.
36 * @param menu
39 public void onCloseMenu(MenuBuilder menu, boolean allMenusAreClosing);
43 * of menu state so that it does not attempt to hide the action bar
54 * Initializes this presenter for the given context and menu.
61 * @param menu the menu to host, or {@code null} to clear the hosted men
    [all...]
MenuHelper.java 17 package com.android.internal.view.menu;
20 * Interface for a helper capable of presenting a menu.
MenuView.java 17 package com.android.internal.view.menu;
19 import com.android.internal.view.menu.MenuBuilder;
20 import com.android.internal.view.menu.MenuItemImpl;
25 * Minimal interface for a menu view. {@link #initialize(MenuBuilder)} must be called for the
26 * menu to be functional.
32 * Initializes the menu to the given menu. This should be called after the
35 * @param menu The menu that this MenuView should display.
37 public void initialize(MenuBuilder menu);
    [all...]
ShowableListMenu.java 17 package com.android.internal.view.menu;
22 * A list menu which can be shown and hidden and which is internally represented by a ListView.
32 * @return The internal ListView for the visible menu.
  /frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
MenuPresenter.java 17 package android.support.v7.view.menu;
24 * A MenuPresenter is responsible for building views for a Menu object. It takes over some
32 * Called by menu implementation to notify another component of open/close events.
38 * Called when a menu is closing.
39 * @param menu
42 public void onCloseMenu(MenuBuilder menu, boolean allMenusAreClosing);
46 * of menu state so that it does not attempt to hide the action bar
57 * Initialize this presenter for the given context and menu.
62 * @param menu Menu to hos
    [all...]
MenuHelper.java 17 package android.support.v7.view.menu;
20 * Interface for a helper capable of presenting a menu.
ShowableListMenu.java 17 package android.support.v7.view.menu;
22 * A list menu which can be shown and hidden and which is internally represented by a ListView.
34 * @return The internal ListView for the visible menu.
  /packages/apps/TV/src/com/android/tv/menu/
ItemListRow.java 17 package com.android.tv.menu;
22 import com.android.tv.menu.ItemListRowView.ItemListAdapter;
25 * A menu item which is used to represents the list of the items.
33 public ItemListRow(Context context, Menu menu, int titleResId, int itemHeightResId,
35 this(context, menu, context.getString(titleResId), itemHeightResId, adapter);
38 public ItemListRow(Context context, Menu menu, String title, int itemHeightResId,
40 super(context, menu, title, itemHeightResId);
  /packages/services/Car/car-support-lib/src/android/support/car/app/menu/compat/
EmbeddedSearchBoxEditListenerCompat.java 16 package android.support.car.app.menu.compat;
18 import android.support.car.app.menu.SearchBoxEditListener;
21 android.car.app.menu.SearchBoxEditListener {
  /packages/apps/DeskClock/src/com/android/deskclock/actionbarmenu/
ActionBarMenuManager.java 20 import android.view.Menu;
27 * Activity scoped singleton that manages action bar menus. Each menu item is controlled by a
33 // A map of all menu item controllers, keyed by menu item id.
41 * Add one or more {@link MenuItemController} to the actionbar menu.
55 * Inflates {@link Menu} for the activity.
59 public void createOptionsMenu(Menu menu, MenuInflater inflater) {
60 if (menu.size() > 0) {
61 throw new IllegalStateException("Menu has already been inflated.")
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
MailPreferenceFragment.java 23 import android.view.Menu;
38 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
39 menu.clear();
40 inflater.inflate(R.menu.settings_fragment_menu, menu);

Completed in 546 milliseconds

1 2 3 4 5 6 7 8 91011>>