/external/chromium_org/ui/views/controls/menu/ |
H A D | menu.cc | 12 bool Menu::Delegate::IsItemChecked(int id) const { 16 bool Menu::Delegate::IsItemDefault(int id) const { 20 string16 Menu::Delegate::GetLabel(int id) const { 24 bool Menu::Delegate::GetAcceleratorInfo(int id, ui::Accelerator* accel) { 28 const gfx::ImageSkia& Menu::Delegate::GetIcon(int id) const { 32 int Menu::Delegate::GetItemCount() const { 36 bool Menu::Delegate::IsItemSeparator(int id) const { 40 bool Menu::Delegate::HasIcon(int id) const { 44 bool Menu::Delegate::SupportsCommand(int id) const { 48 bool Menu 65 Menu::Menu(Delegate* delegate, AnchorPoint anchor) function in class:views::Menu 70 Menu::Menu(Menu* parent) function in class:views::Menu 143 Menu::Menu() : delegate_(NULL), anchor_(TOPLEFT) { function in class:views::Menu [all...] |
H A D | menu.h | 26 class VIEWS_EXPORT Menu { class in namespace:views 71 virtual void ShowContextMenu(Menu* source, 120 // Construct a Menu using the specified controller to determine command 122 // delegate A Menu::Delegate implementation that provides more 123 // information about the Menu presentation. 128 Menu(Delegate* delegate, AnchorPoint anchor); 129 Menu(); 130 virtual ~Menu(); 132 static Menu* Create(Delegate* delegate, 138 static Menu* GetSystemMen [all...] |
H A D | menu_win.h | 24 // Menu class 30 class MenuWin : public Menu { 32 // Construct a Menu using the specified controller to determine command 34 // delegate A Menu::Delegate implementation that provides more 35 // information about the Menu presentation. 41 // Alternatively, a Menu object can be constructed wrapping an existing 44 // Menu object cannot use the delegate. 48 // Overridden from Menu: 53 virtual Menu* AddSubMenuWithIcon(int index, 103 // The Win32 Menu Handl [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/ |
H A D | AppMenuPropertiesDelegate.java | 7 import android.view.Menu; 10 * Interface for the App Handler to query the desired state of the App Menu. 15 * @return Whether the App Menu should be shown. 20 * Allows the delegate to show and hide items before the App Menu is shown. 21 * @param mMenu Menu that will be used as the source for the App Menu pop up. 23 void prepareMenu(Menu mMenu); 26 * @return Whether the App Menu should contain the icon row. 31 * @return The theme resource to use for displaying the App Menu. 36 * @return The height of each row in the App Menu [all...] |
/external/chromium_org/ppapi/cpp/private/ |
H A D | flash_menu.h | 19 class Menu : public Resource { class in namespace:pp::flash 22 Menu(const InstanceHandle& instance, const struct PP_Flash_Menu* menu_data);
|
H A D | flash_menu.cc | 26 Menu::Menu(const InstanceHandle& instance, function in class:pp::flash::Menu 34 int32_t Menu::Show(const Point& location,
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowMenuInflater.java | 4 import android.view.Menu; 25 public void inflate(int resource, Menu root) {
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/ |
H A D | main.py | 42 ('/', menu.Menu),
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
H A D | menu.js | 15 var Menu = cr.ui.define('menu'); 17 Menu.prototype = { 142 cr.defineProperty(Menu, 'selectedIndex', cr.PropertyKind.JS, 147 Menu: Menu
|
H A D | menu_button.js | 6 const Menu = cr.ui.Menu; 38 * @type {cr.ui.Menu} 46 cr.ui.decorate(menu, Menu);
|
H A D | context_menu_handler.js | 8 const Menu = cr.ui.Menu; 20 * @type {cr.ui.Menu} 31 * @param {!cr.ui.Menu} menu The menu to show. 76 * @param {!cr.ui.Menu} menu The menu to position. 179 cr.ui.decorate(menu, Menu);
|
/external/chromium/chrome/browser/resources/ntp4/ |
H A D | recently_closed.js | 25 var Menu = cr.ui.Menu; 35 this.menu = new Menu; 36 cr.ui.decorate(this.menu, Menu);
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
H A D | apps_menu.js | 12 var Menu = cr.ui.Menu; 48 this.menu = new Menu; 49 cr.ui.decorate(this.menu, Menu);
|
/external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/ |
H A D | ActionBarActivity.java | 10 import com.actionbarsherlock.view.Menu; 47 public boolean onCreateOptionsMenu(Menu menu) { 63 private void populate(Menu menu) { 81 public boolean onCreateActionMode(ActionMode mode, Menu menu) { 87 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
H A D | menu.js | 10 * Creates a new menu element. Menu dispatches all commands on the element it 17 var Menu = cr.ui.define('menu'); 19 Menu.prototype = { 54 * @param {Object} item Menu item properties. 154 * Menu length 272 cr.defineProperty(Menu, 'selectedIndex', cr.PropertyKind.JS, 277 Menu: Menu
|
H A D | context_menu_handler.js | 9 /** @const */ var Menu = cr.ui.Menu; 25 * @type {cr.ui.Menu} 36 * @param {!cr.ui.Menu} menu The menu to show. 102 * @param {!cr.ui.Menu} menu The menu to position. 222 cr.ui.decorate(menu, Menu); 262 * @param {!cr.ui.Menu} contextMenu The contextMenu property to be set.
|
H A D | menu_button.js | 7 var Menu = cr.ui.Menu; 59 * @type {cr.ui.Menu} 67 cr.ui.decorate(menu, Menu);
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
H A D | SelectActionModeCallback.java | 10 import android.view.Menu; 93 public boolean onCreateActionMode(ActionMode mode, Menu menu) { 102 public boolean onPrepareActionMode(ActionMode mode, Menu menu) { 113 private void createActionMenu(ActionMode mode, Menu menu) {
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/ |
H A D | menu.py | 49 class Menu(webapp2.RequestHandler): class in inherits:webapp2.RequestHandler
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
H A D | recently_closed.js | 23 var Menu = cr.ui.Menu; 33 this.menu = new Menu; 34 cr.ui.decorate(this.menu, Menu);
|
H A D | other_sessions.js | 13 /** @const */ var Menu = cr.ui.Menu; 48 this.menu = new Menu; 49 cr.ui.decorate(this.menu, Menu); 280 var menu = new cr.ui.Menu; 281 cr.ui.decorate(menu, cr.ui.Menu);
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ |
H A D | ContextMenuHelper.java | 10 import android.view.Menu; 92 menu.add(Menu.NONE, i, Menu.NONE, mCurrentContextMenuParams.getCustomLabelAt(i));
|
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/ |
H A D | Desktop.java | 11 import android.view.Menu; 48 public boolean onCreateOptionsMenu(Menu menu) {
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
H A D | MenuLoader.java | 16 import android.view.Menu; 97 public void inflateMenu(Context context, String key, Menu root) { 101 public void inflateMenu(Context context, int resourceId, Menu root) { 107 Map<String, String> attributes, Menu root) { 154 private void addChildrenInGroup(MenuNode source, int groupId, Menu root) { 180 public void inflate(Context context, Menu root) throws Exception {
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
H A D | MenuLoaderTest.java | 18 import android.view.Menu; 55 Menu testMenu = new TestMenu(); 60 public class TestMenu implements Menu {
|