HomeSort by relevance Sort by last modified time
    Searched full:listbox (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/chromium-trace/catapult/third_party/polymer/components/paper-listbox/
README.md 1 # paper-listbox
3 ![Build status](https://api.travis-ci.org/PolymerElements/paper-listbox.svg?branch=master)
5 `<paper-listbox>` implements an accessible listbox control with Material Design styling.
paper-listbox.html 18 `<paper-listbox>` implements an accessible listbox control with Material Design styling. The focused item
21 <paper-listbox>
24 </paper-listbox>
28 <paper-listbox selected="0">
31 </paper-listbox>
33 Make a multi-select listbox with the `multi` attribute. Items in a multi-select listbox can be deselected,
36 <paper-listbox multi>
39 </paper-listbox>
    [all...]
bower.json 2 "name": "paper-listbox",
4 "description": "Implements an accessible material design listbox",
9 "listbox"
12 "paper-listbox.html",
18 "url": "git://github.com/PolymerElements/paper-listbox"
21 "homepage": "https://github.com/PolymerElements/paper-listbox",
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/windres/
listbox.rc 3 LISTBOX 1001, 28, 63, 137, 52
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ScrolledList.py 8 # Create top frame, with scrollbar and listbox
14 self.listbox = listbox = Listbox(frame, exportselection=0,
17 listbox.configure(options)
18 listbox.pack(expand=1, fill="both")
19 # Tie listbox and scrollbar together
20 vbar["command"] = listbox.yview
21 listbox["yscrollcommand"] = vbar.set
23 listbox.bind("<ButtonRelease-1>", self.click_event
    [all...]
AutoCompleteWindow.py 28 self.autocompletewindow = self.listbox = self.scrollbar = None
114 """Should be called when the selection of the Listbox has changed.
115 Updates the Listbox display and calls _change_start."""
116 cursel = int(self.listbox.curselection()[0])
118 self.listbox.see(cursel)
134 self.listbox.configure(selectbackground=self.origselbackground,
137 self.listbox.configure(selectbackground=self.listbox.cget("bg"),
138 selectforeground=self.listbox.cget("fg"))
143 self.listbox.delete(0, END
    [all...]
ToolTip.py 74 listbox = Listbox(self.tipwindow, background="#ffffe0")
75 listbox.pack()
77 listbox.insert(END, item)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ScrolledList.py 8 # Create top frame, with scrollbar and listbox
14 self.listbox = listbox = Listbox(frame, exportselection=0,
17 listbox.configure(options)
18 listbox.pack(expand=1, fill="both")
19 # Tie listbox and scrollbar together
20 vbar["command"] = listbox.yview
21 listbox["yscrollcommand"] = vbar.set
23 listbox.bind("<ButtonRelease-1>", self.click_event
    [all...]
AutoCompleteWindow.py 28 self.autocompletewindow = self.listbox = self.scrollbar = None
114 """Should be called when the selection of the Listbox has changed.
115 Updates the Listbox display and calls _change_start."""
116 cursel = int(self.listbox.curselection()[0])
118 self.listbox.see(cursel)
134 self.listbox.configure(selectbackground=self.origselbackground,
137 self.listbox.configure(selectbackground=self.listbox.cget("bg"),
138 selectforeground=self.listbox.cget("fg"))
143 self.listbox.delete(0, END
    [all...]
ToolTip.py 74 listbox = Listbox(self.tipwindow, background="#ffffe0")
75 listbox.pack()
77 listbox.insert(END, item)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ScrolledList.py 8 # Create top frame, with scrollbar and listbox
14 self.listbox = listbox = Listbox(frame, exportselection=0,
17 listbox.configure(options)
18 listbox.pack(expand=1, fill="both")
19 # Tie listbox and scrollbar together
20 vbar["command"] = listbox.yview
21 listbox["yscrollcommand"] = vbar.set
23 listbox.bind("<ButtonRelease-1>", self.click_event
    [all...]
AutoCompleteWindow.py 28 self.autocompletewindow = self.listbox = self.scrollbar = None
114 """Should be called when the selection of the Listbox has changed.
115 Updates the Listbox display and calls _change_start."""
116 cursel = int(self.listbox.curselection()[0])
118 self.listbox.see(cursel)
134 self.listbox.configure(selectbackground=self.origselbackground,
137 self.listbox.configure(selectbackground=self.listbox.cget("bg"),
138 selectforeground=self.listbox.cget("fg"))
143 self.listbox.delete(0, END
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ScrolledList.py 8 # Create top frame, with scrollbar and listbox
14 self.listbox = listbox = Listbox(frame, exportselection=0,
17 listbox.configure(options)
18 listbox.pack(expand=1, fill="both")
19 # Tie listbox and scrollbar together
20 vbar["command"] = listbox.yview
21 listbox["yscrollcommand"] = vbar.set
23 listbox.bind("<ButtonRelease-1>", self.click_event
    [all...]
AutoCompleteWindow.py 28 self.autocompletewindow = self.listbox = self.scrollbar = None
114 """Should be called when the selection of the Listbox has changed.
115 Updates the Listbox display and calls _change_start."""
116 cursel = int(self.listbox.curselection()[0])
118 self.listbox.see(cursel)
134 self.listbox.configure(selectbackground=self.origselbackground,
137 self.listbox.configure(selectbackground=self.listbox.cget("bg"),
138 selectforeground=self.listbox.cget("fg"))
143 self.listbox.delete(0, END
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/paper-listbox/test/
paper-listbox.html 14 <title>paper-listbox tests</title>
23 <link rel="import" href="../paper-listbox.html">
30 <paper-listbox selected="0">
34 </paper-listbox>
40 suite('<paper-listbox>', function() {
41 var listbox;
44 listbox = fixture('basic');
49 assert(listbox.selectedItem.classList.contains('iron-selected'));
54 test('has listbox aria role', function() {
55 assert(listbox.getAttribute('role') === 'listbox')
    [all...]
index.html 14 <title>paper-listbox tests</title>
28 'paper-listbox.html'
  /external/chromium-trace/catapult/third_party/polymer/components/paper-dropdown-menu/demo/
index.html 25 <link rel="import" href="../../paper-listbox/paper-listbox.html">
52 <paper-listbox class="dropdown-content">
57 </paper-listbox>
61 <paper-listbox class="dropdown-content">
66 </paper-listbox>
75 <paper-listbox class="dropdown-content" selected="1">
80 </paper-listbox>
84 <paper-listbox class="dropdown-content" selected="1">
89 </paper-listbox>
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/paper-listbox/demo/
index.html 18 <title>paper-listbox demo</title>
24 <link rel="import" href="../paper-listbox.html">
59 <paper-listbox>
64 </paper-listbox>
71 <paper-listbox selected="0">
76 </paper-listbox>
83 <paper-listbox multi>
88 </paper-listbox>
  /external/autotest/frontend/client/src/autotest/afe/
LabelFilter.java 10 import com.google.gwt.user.client.ui.ListBox;
15 private final ListBox platform;
24 platform = new ListBox();
  /external/autotest/frontend/client/src/autotest/common/table/
ListFilter.java 9 import com.google.gwt.user.client.ui.ListBox;
13 protected ListBox select;
29 * Subclasses should override this if they wish to use a multi-select listbox
30 * @return true if and only if the listbox should be multiple select
  /external/autotest/frontend/client/src/autotest/tko/
ExistingGraphsFrontend.java 22 import com.google.gwt.user.client.ui.ListBox;
47 private ListBox singleBenchmark = new ListBox(false);
48 private ListBox multiBenchmark = new ListBox(true);
131 ListBox benchmark = getVisibleBenchmark();
154 ListBox benchmark = getVisibleBenchmark();
164 private ListBox getVisibleBenchmark() {
183 ListBox dest;
184 ListBox src
    [all...]
SpreadsheetHeaderSelectorView.java 29 private ExtendedListBox listBox = new ExtendedListBox();
36 singleHeaderOptions.add(listBox);
82 return listBox;
  /external/autotest/frontend/client/src/autotest/common/ui/
ExtendedListBox.java 6 import com.google.gwt.user.client.ui.ListBox;
8 public class ExtendedListBox extends ListBox implements SimplifiedList {
  /external/chromium-trace/catapult/third_party/polymer/
bower.json 22 "paper-listbox": "polymerelements/paper-listbox#^1.1.2"
  /external/chromium-trace/catapult/third_party/polymer/components/paper-item/demo/
index.html 34 div[role="listbox"] {
53 <h3>Paper-items are simple list elements, ideally used in a paper-listbox or
54 an element with <i>role="listbox"</i></h3>
57 <div role="listbox">
79 <div role="listbox">
91 <div role="listbox">
115 <div role="listbox">
144 <div role="listbox">
176 <div role="listbox">

Completed in 1919 milliseconds

1 2 3 4 5