Searched refs:select (Results 1 - 25 of 717) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/help/
H A Dhelp.css7 -webkit-user-select: text;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DthemeChromiumLinux.css33 select:not([size]):not([multiple]),
34 select[size="0"],
35 select[size="1"] {
H A DthemeMac.css6 select, input[type="color" i][list] {
11 select[size],
12 select[multiple],
13 select[size][multiple] {
18 select[size="0"],
19 select[size="1"] {
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Dcolor_settings.css5 #color-settings .color-settings-select {
H A Dlayout_settings.css5 #layout-settings .layout-settings-select {
H A Dmargin_settings.css5 #margin-settings .margin-settings-select {
H A Dmedia_size_settings.css5 #media-size-settings .media-size-settings-select {
H A Dcolor_settings.js57 * Called when the select element is changed. Updates the print ticket
62 var select = this.select_;
63 var isColor = select.options[select.selectedIndex].value == 'color';
72 return this.getChildElement('.color-settings-select');
81 var select = this.select_;
83 for (var i = 0; i < select.options.length; i++) {
84 if (select.options[i].value == valueToSelect) {
85 select.selectedIndex = i;
H A Dlayout_settings.js57 * Called when the select element is changed. Updates the print ticket
62 var select = this.select_;
64 select.options[select.selectedIndex].value == 'landscape';
73 return this.getChildElement('.layout-settings-select');
83 var select = this.select_;
86 for (var i = 0; i < select.options.length; i++) {
87 if (select.options[i].value == valueToSelect) {
88 select.selectedIndex = i;
H A Dmargin_settings.js33 SELECT: 'margin-settings-select'
75 * Called when the select element is changed. Updates the print ticket
80 var select = this.select_;
83 select.selectedIndex);
89 * select option.
94 var select = this.select_;
98 select.selectedIndex);
100 select.options[selectedMarginsType].selected = false;
101 select.options[marginsType].selected = true;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLContentElement.idl29 [Reflect, TreatNullAs=NullString] attribute DOMString select;
H A DHTMLOptionElement.cpp128 // Changing the text causes a recalc of a select's items, which will reset the selected
129 // index to the first item if the select is single selection with a menu list. We attempt to
131 RefPtrWillBeRawPtr<HTMLSelectElement> select = ownerSelectElement(); local
132 bool selectIsMenuList = select && select->usesMenuList();
133 int oldSelectedIndex = selectIsMenuList ? select->selectedIndex() : -1;
144 if (selectIsMenuList && select->selectedIndex() != oldSelectedIndex)
145 select->setSelectedIndex(oldSelectedIndex);
150 if (HTMLSelectElement* select = ownerSelectElement())
151 select
396 HTMLSelectElement* select = ownerSelectElement(); local
[all...]
/external/chromium_org/tools/profile_chrome/
H A Dui.py6 import select namespace
16 select.select([sys.stdin], [], [], timeout)
/external/compiler-rt/test/msan/
H A Dvector_select.cc4 // Regression test for MemorySanitizer instrumentation of a select instruction
9 __m128d select(bool b, __m128d c, __m128d d) function
/external/eigen/doc/snippets/
H A DMatrixBase_select.cpp5 m = (m.array() >= 5).select(-m, m);
/external/strace/test/
H A Dselect.c2 #include <sys/select.h>
18 /* Start with a nice simple select */
19 select(3, &rds, &rds, &rds, NULL);
26 select(-1, (fd_set *)buffer, NULL, NULL, NULL);
31 select(FD_SETSIZE + 1, (fd_set *)buffer, NULL, NULL, &timeout);
/external/chromium-trace/trace-viewer/src/ui/
H A Dquad_view.css12 -webkit-user-select: none;
/external/qemu/util/
H A Dyield-android.c6 #include <sys/select.h>
15 int ret = select(fd + 1, &read_fds, NULL, NULL, NULL);
/external/lldb/test/pexpect-2.4/examples/
H A Dbd_client.py7 import sys, time, select namespace
10 r,w,e = select.select([s.fileno()],[],[], 2)
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
H A Dordinalrules.js44 * Default Ordinal select rule.
113 * Ordinal select rules for en locale
134 * Ordinal select rules for sv locale
149 * Ordinal select rules for hu locale
164 * Ordinal select rules for kk locale
179 * Ordinal select rules for mr locale
200 * Ordinal select rules for sq locale
218 * Ordinal select rules for bn locale
242 * Ordinal select rules for gu locale
266 * Ordinal select rule
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/common/
H A Dsearch_box.css6 -webkit-user-select: none;
11 -webkit-user-select: none;
/external/chromium_org/extensions/renderer/resources/
H A Dplatform_app.css12 -webkit-user-select: none;
33 -webkit-user-select: auto;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dselect.c8 int select(int nfds, fd_set* readfds, fd_set* writefds, function
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSurroundingTextTest.cpp25 VisibleSelection select(int offset) { return select(offset, offset); } function in class:__anon11065::SurroundingTextTest
26 VisibleSelection select(int start, int end);
44 VisibleSelection SurroundingTextTest::select(int start, int end) function in class:__anon11065::SurroundingTextTest
58 VisibleSelection selection = select(0);
67 VisibleSelection selection = select(0);
77 VisibleSelection selection = select(0);
88 VisibleSelection selection = select(7);
97 VisibleSelection selection = select(6);
106 VisibleSelection selection = select(
[all...]
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DpickerCommon.css26 -webkit-user-select: none;

Completed in 781 milliseconds

1234567891011>>