/external/chromium-trace/catapult/third_party/polymer/components/iron-menu-behavior/test/ |
D | iron-menu-behavior.html | 14 <title>iron-menu-behavior tests</title> 24 <link rel="import" href="test-menu.html"> 25 <link rel="import" href="test-nested-menu.html"> 40 <test-menu> 44 </test-menu> 50 <test-menu> 52 </test-menu> 58 <test-menu> 63 </test-menu> 69 <test-menu> [all …]
|
/external/python/cpython2/Demo/tkinter/matt/ |
D | menu-all-types-of-entries.py | 22 # | | <-------- This is a MENU. The lines of text in the menu are 23 # | | MENU ENTRIES 27 # | | another file | <------ this cascading part is also a MENU 44 print "picked a menu item" 56 # make menu button 61 # make the pulldown part of the File menu. The parameter passed is the master. 62 # we attach it to the button as a python attribute called "menu" by convention. 64 Command_button.menu = Menu(Command_button) 67 Command_button.menu.add_command(label="Undo") 69 Command_button.menu.entryconfig(0, state=DISABLED) [all …]
|
D | menu-simple.py | 22 # | | <------ This is a MENU. The lines of text in the menu are 23 # | | MENU ENTRIES 27 # | | another file | <------ this cascading part is also a MENU 45 # make menu button : "File" 48 File_button.menu = Menu(File_button) 50 # add an item. The first param is a menu entry type, 52 # see menu-demo-2.py for examples of use 53 File_button.menu.add_command(label='New...', underline=0, 57 File_button.menu.add_command(label='Open...', underline=0, 60 File_button.menu.add_command(label='Quit', underline=0, [all …]
|
D | two-radio-groups.py | 3 # The way to think about this is that each radio button menu 7 # radiobutton menu choice, you have the option of specifying the 23 # make menu button 29 Radiobutton_button.menu = Menu(Radiobutton_button) 31 Radiobutton_button.menu.add_radiobutton(label='Republican', 34 Radiobutton_button.menu.add('radiobutton', {'label': 'Democrat', 38 Radiobutton_button.menu.add('radiobutton', {'label': 'Libertarian', 44 # set up a pointer from the file menubutton back to the file menu 45 Radiobutton_button['menu'] = Radiobutton_button.menu 51 # make menu button [all …]
|
/external/llvm-project/llvm/test/tools/llvm-rc/ |
D | tag-menu.test | 1 ; RUN: llvm-rc /FO %t -- %p/Inputs/tag-menu.rc 2 ; RUN: llvm-readobj %t | FileCheck %s --check-prefix=MENU 5 ; RUN: cp %p/Inputs/tag-menu.rc %t.implicit.rc 7 ; RUN: llvm-readobj %t.implicit.res | FileCheck --check-prefix=MENU %s 9 ; MENU: Resource type (int): MENU (ID 4) 10 ; MENU-NEXT: Resource name (string): CHECKRECURSION 11 ; MENU-NEXT: Data version: 0 12 ; MENU-NEXT: Memory flags: 0x1030 13 ; MENU-NEXT: Language ID: 1033 14 ; MENU-NEXT: Version (major): 0 [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-menu/ |
D | README.md | 5 paper-menu.html paper-submenu.html 15 …s://travis-ci.org/PolymerElements/paper-menu.svg?branch=master)](https://travis-ci.org/PolymerElem… 17 _[Demo and API docs](https://elements.polymer-project.org/elements/paper-menu)_ 20 ##<paper-menu> 24 `<paper-menu>` implements an accessible menu control with Material Design styling. The focused item 28 <paper-menu> 31 </paper-menu> 37 <paper-menu selected="0"> 40 </paper-menu> 43 Make a multi-select menu with the `multi` attribute. Items in a multi-select menu can be deselected, [all …]
|
D | paper-menu.html | 12 <link rel="import" href="../iron-menu-behavior/iron-menu-behavior.html"> 14 <link rel="import" href="paper-menu-shared-styles.html"> 19 `<paper-menu>` implements an accessible menu control with Material Design styling. The focused item 22 <paper-menu> 25 </paper-menu> 29 <paper-menu selected="0"> 32 </paper-menu> 34 Make a multi-select menu with the `multi` attribute. Items in a multi-select menu can be deselected, 37 <paper-menu multi> 40 </paper-menu> [all …]
|
D | paper-submenu.html | 14 <link rel="import" href="paper-menu-shared-styles.html"> 17 `<paper-submenu>` is a nested menu inside of a parent `<paper-menu>`. It 18 consists of a trigger that expands or collapses another `<paper-menu>`: 20 <paper-menu> 22 <paper-item class="menu-trigger">Topics</paper-item> 23 <paper-menu class="menu-content"> 27 </paper-menu> 30 <paper-item class="menu-trigger">Faves</paper-item> 31 <paper-menu class="menu-content"> 34 </paper-menu> [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-menu/demo/ |
D | index.html | 18 <title>paper-menu demo</title> 24 <link rel="import" href="../paper-menu.html"> 61 <paper-menu> 66 </paper-menu> 73 <paper-menu selected="0"> 78 </paper-menu> 85 <paper-menu multi> 90 </paper-menu> 95 <h4>Sub-menu</h4> 97 <paper-menu attr-for-item-title="label" multi> [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-menu-button/ |
D | README.md | 5 paper-menu-button-animations.html paper-menu-button.html 15 …travis-ci.org/PolymerElements/paper-menu-button.svg?branch=master)](https://travis-ci.org/PolymerE… 17 _[Demo and API docs](https://elements.polymer-project.org/elements/paper-menu-button)_ 20 ##<paper-menu-button> 24 `paper-menu-button` allows one to compose a designated "trigger" element with 25 another element that represents "content", to create a dropdown menu that 32 The `paper-menu-button` is sensitive to its content's `iron-select` events. If 33 the "content" element triggers an `iron-select` event, the `paper-menu-button` 39 <paper-menu-button> 40 <paper-icon-button icon="menu" class="dropdown-trigger"></paper-icon-button> [all …]
|
D | paper-menu-button.html | 19 <link rel="import" href="paper-menu-button-animations.html"> 24 `paper-menu-button` allows one to compose a designated "trigger" element with 25 another element that represents "content", to create a dropdown menu that 32 The `paper-menu-button` is sensitive to its content's `iron-select` events. If 33 the "content" element triggers an `iron-select` event, the `paper-menu-button` 38 <paper-menu-button> 39 <paper-icon-button icon="menu" class="dropdown-trigger"></paper-icon-button> 40 <paper-menu class="dropdown-content"> 44 </paper-menu> 45 </paper-menu-button> [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-menu-button/demo/ |
D | index.html | 19 <title>paper-menu-button</title> 26 <link rel="import" href="../../paper-menu/paper-menu.html"> 32 <link rel="import" href="../paper-menu-button.html"> 41 paper-menu { 45 paper-menu-button { 70 <h4>Paper Icon Button + Paper Menu</h4> 72 <paper-menu-button> 73 <paper-icon-button icon="menu" class="dropdown-trigger" alt="menu"></paper-icon-button> 74 <paper-menu class="dropdown-content"> 78 </paper-menu> [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-dropdown-menu/demo/ |
D | index.html | 18 <title>paper-dropdown-menu demo</title> 27 <link rel="import" href="../paper-dropdown-menu.html"> 28 <link rel="import" href="../paper-dropdown-menu-light.html"> 39 paper-dropdown-menu { 48 <h4>This is a plain paper-dropdown-menu</h4> 51 <paper-dropdown-menu label="Dinosaurs"> 58 </paper-dropdown-menu> 60 <paper-dropdown-menu-light label="Dinosaurs (light)"> 67 </paper-dropdown-menu-light> 74 <paper-dropdown-menu label="Dinosaurs"> [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | macosxSupport.py | 114 Replace the Tk root menu by something that is more appropriate for 117 # The menu that is attached to the Tk root (".") is also used by AquaTk for 118 # all windows that don't specify a menu of their own. The default menubar 120 # Most annoying of those is an 'About Tck/Tk...' menu in the application 121 # menu. 124 # should only contain the correct application menu and the window menu. 127 # menu. 128 from Tkinter import Menu 134 # Remove the last 3 items of the file menu: a separator, close window and 136 # it should be according to the HIG. Quit is in the application menu. [all …]
|
/external/fmtlib/doc/bootstrap/ |
D | dropdowns.less | 29 // The dropdown menu (ul) 30 .dropdown-menu { 35 display: none; // none by default, but block on "open" of the menu 50 // Aligns the dropdown menu to right 52 // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]` 63 // Links within the dropdown menu 76 .dropdown-menu > li > a { 86 .dropdown-menu > .active > a { 101 .dropdown-menu > .disabled > a { 121 // Show the menu [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | macosx.py | 125 ## Fix the menu and related functions. 150 Replace the Tk root menu by something that is more appropriate for 153 # The menu that is attached to the Tk root (".") is also used by AquaTk for 154 # all windows that don't specify a menu of their own. The default menubar 156 # Most annoying of those is an 'About Tck/Tk...' menu in the application 157 # menu. 160 # should only contain the correct application menu and the window menu. 163 # menu. 164 from tkinter import Menu 170 # Remove the last 3 items of the file menu: a separator, close window and [all …]
|
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
D | test_VIDIOC_QUERYMENU.c | 34 struct v4l2_querymenu *menu) in do_check_menu() argument 43 menu->id, menu->index, menu->name, menu->reserved); in do_check_menu() 45 CU_ASSERT_EQUAL(menu->id, id); in do_check_menu() 46 CU_ASSERT_EQUAL(menu->index, index); in do_check_menu() 48 CU_ASSERT(0 < strlen((char *)menu->name)); in do_check_menu() 49 CU_ASSERT(valid_string((char *)menu->name, sizeof(menu->name))); in do_check_menu() 51 CU_ASSERT_EQUAL(menu->reserved, 0); in do_check_menu() 61 strncpy((char *)menu2.name, (char *)menu->name, in do_check_menu() 63 CU_ASSERT_EQUAL(memcmp(menu, &menu2, sizeof(*menu)), 0); in do_check_menu() 72 CU_ASSERT(memcmp(&menu, &menu2, sizeof(menu))); in do_check_menu() [all …]
|
/external/autotest/server/site_tests/firmware_MenuModeTransition/ |
D | firmware_MenuModeTransition.py | 12 """Base class for menu navigator.""" 20 """Navigate up in the menu.""" 27 """Navigate down in the menu.""" 34 """Select a menu item.""" 44 """Menu navigator for legacy menu UI. 46 The "legacy menu UI" is an old menu-based UI, which has been replaced 47 by the new one, called "menu UI". 57 Menu items in developer warning screen: 77 Menu items in developer warning screen: 84 Menu items in to-norm confirmation screen: [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-menu/test/ |
D | paper-submenu.html | 26 <link rel="import" href="../paper-menu.html"> 39 <paper-menu> 41 <paper-item class="menu-trigger">Topic 1</paper-item> 42 <paper-menu class="menu-content"> 46 </paper-menu> 49 <paper-item class="menu-trigger">Topic 2</paper-item> 50 <paper-menu class="menu-content"> 54 </paper-menu> 57 <paper-item class="menu-trigger">Topic 3</paper-item> 58 <paper-menu class="menu-content"> [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/fakes/ |
D | RoboMenuTest.java | 23 RoboMenu menu = new RoboMenu(ApplicationProvider.getApplicationContext()); in addAndRemoveMenuItems() local 24 menu.add(9, 10, 0, org.robolectric.R.string.ok); in addAndRemoveMenuItems() 26 RoboMenuItem item = (RoboMenuItem) menu.findItem(10); in addAndRemoveMenuItems() 31 menu.removeItem(10); in addAndRemoveMenuItems() 33 item = (RoboMenuItem) menu.findItem(10); in addAndRemoveMenuItems() 39 RoboMenu menu = new RoboMenu(ApplicationProvider.getApplicationContext()); in addSubMenu() local 40 menu.addSubMenu(9, 10, 0, org.robolectric.R.string.ok); in addSubMenu() 42 RoboMenuItem item = (RoboMenuItem) menu.findItem(10); in addSubMenu() 51 RoboMenu menu = new RoboMenu(a); in clickWithIntent() local 52 menu.add(0, 10, 0, org.robolectric.R.string.ok); in clickWithIntent() [all …]
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
D | ScriptManager.java | 34 import android.view.Menu; 98 return ordinal() + Menu.FIRST; in getId() 206 public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { in onCreateContextMenu() argument 207 menu.add(Menu.NONE, MenuId.RENAME.getId(), Menu.NONE, "Rename"); in onCreateContextMenu() 208 menu.add(Menu.NONE, MenuId.DELETE.getId(), Menu.NONE, "Delete"); in onCreateContextMenu() 265 public boolean onPrepareOptionsMenu(Menu menu) { in onPrepareOptionsMenu() argument 266 super.onPrepareOptionsMenu(menu); in onPrepareOptionsMenu() 267 menu.clear(); in onPrepareOptionsMenu() 269 buildAddMenu(menu); in onPrepareOptionsMenu() 270 buildSwitchActivityMenu(menu); in onPrepareOptionsMenu() [all …]
|
/external/python/cpython2/Lib/plat-mac/ |
D | 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) 525 menu.menu.DisableMenuItem(i + 1) [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | mirror_v1.timeline.html | 154 …ommands": [ # A list of voice menu commands that a contact can handle. Glass shows up to three con… 155 { # A single menu command that is part of a Contact. 157 …es a timeline item with the transcription of user speech from the "Take a note" voice menu command. 158 …a timeline item with the transcription of user speech from the "Post an update" voice menu command. 162 …. If this contact's name must be spoken as part of a voice disambiguation menu, this name is used … 165 …"menuItems": [ # A list of menu items that will be presented to the user when this item is selecte… 166 { # A custom menu item that can be presented to the user by a timeline item. 167 … will be displayed in the voice menu and the touch label will be displayed in the touch menu. Note… 168 …cted": True or False, # If set to true on a CUSTOM menu item, that item will be removed from the m… 173 …"values": [ # For CUSTOM items, a list of values controlling the appearance of the menu item in ea… [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-dropdown-menu/ |
D | paper-dropdown-menu-light.html | 19 <link rel="import" href="../paper-menu-button/paper-menu-button.html"> 22 <link rel="import" href="paper-dropdown-menu-icons.html"> 23 <link rel="import" href="paper-dropdown-menu-shared-styles.html"> 28 This is a faster, lighter version of `paper-dropdown-menu`, that does not 32 than `paper-dropdown-menu`. 34 `paper-dropdown-menu-light` is similar to a native browser select element. 35 `paper-dropdown-menu-light` works with selectable content. The currently selected 41 <paper-dropdown-menu-light label="Your favourite pastry"> 48 </paper-dropdown-menu-light> 50 This example renders a dropdown menu with 4 options. [all …]
|
D | paper-dropdown-menu.html | 19 <link rel="import" href="../paper-menu-button/paper-menu-button.html"> 23 <link rel="import" href="paper-dropdown-menu-icons.html"> 24 <link rel="import" href="paper-dropdown-menu-shared-styles.html"> 29 `paper-dropdown-menu` is similar to a native browser select element. 30 `paper-dropdown-menu` works with selectable content. The currently selected 36 <paper-dropdown-menu label="Your favourite pastry"> 43 </paper-dropdown-menu> 45 This example renders a dropdown menu with 4 options. 48 menu. This can be a [`paper-listbox`](paper-listbox), or any other or 51 Specifically, the menu child must fire an [all …]
|