/external/chromium_org/ppapi/cpp/private/ |
flash_menu.h | 19 class Menu : public Resource { 22 Menu(const InstanceHandle& instance, const struct PP_Flash_Menu* menu_data);
|
flash_menu.cc | 26 Menu::Menu(const InstanceHandle& instance, 34 int32_t Menu::Show(const Point& location,
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/ |
menu.py | 42 menu = [ variable 49 class Menu(webapp2.RequestHandler): 65 "menu": menu, 70 template.render("templates/menu.html", template_values))
|
/external/chromium/chrome/browser/resources/ |
network_menu.js | 45 networkMenuItem.innerHTML = '<div class="network-menu-item">' + 256 // *TODO: eliminate code duplication with menu.js 335 __proto__: Menu.prototype, 359 Menu.prototype.onClick_.call(this, event, item);
|
menu.js | 20 * @param {number} index The index of menu item to activate in menu model. 39 * Decorates the menu item element. 42 this.className = 'menu-item'; 47 * @param {Menu} menu A {@code Menu} object to which this menu item 49 * @param {Object} attrs JSON object that represents this menu items 50 * properties. This is created from menu model in C code. Se [all...] |
wrench_menu.js | 6 * ButtonCommand class for small buttons on menu items. 20 * Changes the selection state of the menu item. 33 * Activate the menu item. 50 * Initialize the menu item. 53 init: function(menu, attrs, model) { 54 this.menu_ = menu; 59 menu.addHandlers(this, this); 60 if (attrs.command_id == menu.config_.IDC_COPY) { 61 menu.addLabelTo(this, menu.config_.IDS_COPY, this [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
network_menu.js | 45 networkMenuItem.innerHTML = '<div class="network-menu-item">' + 256 // *TODO: eliminate code duplication with menu.js 335 __proto__: Menu.prototype, 359 Menu.prototype.onClick_.call(this, event, item);
|
menu.js | 20 * @param {number} index The index of menu item to activate in menu model. 39 * Decorates the menu item element. 42 this.className = 'menu-item'; 47 * @param {Menu} menu A {@code Menu} object to which this menu item 49 * @param {Object} attrs JSON object that represents this menu items 50 * properties. This is created from menu model in C code. Se [all...] |
wrench_menu.js | 6 * ButtonCommand class for small buttons on menu items. 20 * Changes the selection state of the menu item. 33 * Activate the menu item. 50 * Initialize the menu item. 53 init: function(menu, attrs, model) { 54 this.menu_ = menu; 59 menu.addHandlers(this, this); 60 if (attrs.command_id == menu.config_.IDC_COPY) { 61 menu.addLabelTo(this, menu.config_.IDS_COPY, this [all...] |
/external/chromium_org/ui/views/controls/menu/ |
menu.cc | 5 #include "ui/views/controls/menu/menu.h" 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 [all...] |
menu.h | 26 class VIEWS_EXPORT Menu { 32 // Classes implement this interface to tell the menu system more about each 44 // There can only be one default menu item. 47 // The string shown for the menu item. 51 // the shortcut text next to each menu item. If there is an accelerator 55 // The icon shown for the menu item. 58 // The number of items to show in the menu 64 // Shows the context menu with the specified id. This is invoked when the 65 // user does the appropriate gesture to show a context menu. The id 66 // identifies the id of the menu to show the context menu for [all...] |
/external/chromium_org/tools/grit/grit/gather/ |
rc.py | 153 class Menu(Section): 154 '''A resource section that contains a menu resource.''' 156 # A typical menu resource section looks something like this: 158 # IDC_KLONK MENU 178 'This message represents a menu. Each of the items appears in sequence ' 179 '(some possibly within sub-menus) in the menu. The XX01XX placeholders ' 182 'in the menu. Please make sure that no two items in the same menu share ' 186 # A dandy regexp to suck all the IDs and translateables out of a menu 189 # Match the MENU ID on the first lin [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
Menu.java | 27 * Container class for CAT menu (SET UP MENU, SELECT ITEM) parameters. 30 public class Menu implements Parcelable { 42 public Menu() { 53 // set default style to be navigation menu. 57 private Menu(Parcel in) { 98 public static final Parcelable.Creator<Menu> CREATOR = new Parcelable.Creator<Menu>() { 100 public Menu createFromParcel(Parcel in) { 101 return new Menu(in) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
macosxSupport.py | 81 Replace the Tk root menu by something that's more appropriate for 84 # The menu that is attached to the Tk root (".") is also used by AquaTk for 85 # all windows that don't specify a menu of their own. The default menubar 87 # Most annoying of those is an 'About Tck/Tk...' menu in the application 88 # menu. 91 # should only contain the correct application menu and the window menu. 94 # menu. 95 from Tkinter import Menu, Text, Text 101 menubar = Menu(root [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
macosxSupport.py | 81 Replace the Tk root menu by something that's more appropriate for 84 # The menu that is attached to the Tk root (".") is also used by AquaTk for 85 # all windows that don't specify a menu of their own. The default menubar 87 # Most annoying of those is an 'About Tck/Tk...' menu in the application 88 # menu. 91 # should only contain the correct application menu and the window menu. 94 # menu. 95 from Tkinter import Menu, Text, Text 101 menubar = Menu(root [all...] |
/frameworks/base/core/java/android/view/ |
Menu.java | 24 * Interface for managing the items in a menu. 26 * By default, every Activity supports an options menu of actions or options. 27 * You can add items to this menu and handle clicks on your additions. The 28 * easiest way of adding menu items is inflating an XML file into the 29 * {@link Menu} via {@link MenuInflater}. The easiest way of attaching code to 33 * Different menu types support different features: 39 * <b>expanded menus</b> (only available if six or more menu items are visible, 40 * reached via the 'More' item in the icon menu) do not show item icons, and 51 public interface Menu { 118 * any existing menu items in the same group [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
MiniAEFrame.py | 18 from Carbon import Menu 35 # Initialize menu 38 Menu.ClearMenuBar() 39 self.applemenu = applemenu = Menu.NewMenu(self.appleid, "\024") 44 self.quitmenu = Menu.NewMenu(self.quitid, "File") 48 Menu.DrawMenuBar() 93 result = Menu.MenuSelect(where) 99 elif item > 1 and hasattr(Menu, 'OpenDeskAcc'): 101 Menu.OpenDeskAcc(name) 106 Menu.HiliteMenu(0 [all...] |
EasyDialogs.py | 32 from Carbon import Menu 381 menu = Menu.as_Menu(mhandle) 389 menu.AppendMenu(label) 390 ## mhandle, mid = menu.getpopupinfo()
|
FrameWork.py | 20 from Carbon.Menu import * 131 self.filemenu = m = Menu(self.menubar, "File") 450 """Represent a set of menus in a menu bar. 511 menu = self.menus[m] 512 if menu.__class__ == FrameWork.AppleMenu: 514 for i in range(len(menu.items)): 515 label, shortcut, callback, kind = menu.items[i] 521 menu.menu.EnableMenuItem(i + 1) 523 menu.menu.EnableMenuItem(i + 1 [all...] |
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
main.js | 12 /** @const */ var Menu = cr.ui.Menu; 86 // Global undo is Command-Z. It is not in any menu. 96 // Global undo is Ctrl-Z. It is not in any menu. 399 * @param {string} singularId The string id of singular form of the menu label. 400 * @param {string} pluralId The string id of menu label if the singular form is 402 * @param {boolean} commandDisabled Whether the menu item should be disabled 435 var organizeMenuCommand = $('paste-from-organize-menu-command'); 436 var contextMenuCommand = $('paste-from-context-menu-command'); 452 case 'import-menu-command' [all...] |
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
main.js | 12 /** @const */ var Menu = cr.ui.Menu; 86 // Global undo is Command-Z. It is not in any menu. 96 // Global undo is Ctrl-Z. It is not in any menu. 387 * @param {string} singularId The string id of singular form of the menu label. 388 * @param {string} pluralId The string id of menu label if the singular form is 390 * @param {boolean} commandDisabled Whether the menu item should be disabled 423 var organizeMenuCommand = $('paste-from-organize-menu-command'); 424 var contextMenuCommand = $('paste-from-context-menu-command'); 440 case 'import-menu-command' [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
history.js | 32 /** @const */ var Menu = cr.ui.Menu; 173 // Keep track of the drop down that triggered the menu, so we know 179 var menu = $('action-menu'); 180 menu.dataset.devicename = self.deviceName; 181 menu.dataset.devicetype = self.deviceType; 231 dropDown.value = 'Open action menu'; 233 dropDown.setAttribute('menu', '#action-menu'); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkinter.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkinter.py | [all...] |
/prebuilts/tools/common/netbeans-visual/ |
org-openide-util.jar | |