Searched defs:select (Results 1 - 25 of 91) sorted by relevance

1234

/external/v8/test/mjsunit/compiler/
H A Dregress-gap.js39 function select(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) { function
116 assertEquals(1, select(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
117 assertEquals(4, select(3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
118 assertEquals(10, select(9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
/external/webkit/LayoutTests/fast/js/resources/
H A DgetOwnPropertyDescriptor.js57 var select = document.createElement("select"); variable
58 select.innerHTML = "<option>foo</option>";
59 descriptorShouldBe("select", "'length'", {writable: false, enumerable: true, configurable: false, value:"select.length"});
60 descriptorShouldBe("select", "0", {writable: true, enumerable: true, configurable: false, value:"select[0]"});
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLSelectElementCustom.cpp37 HTMLSelectElement& select = *static_cast<HTMLSelectElement*>(impl()); local
41 select.remove(option);
43 select.remove(exec->argument(0).toInt32(exec));
48 void selectIndexSetter(HTMLSelectElement* select, JSC::ExecState* exec, unsigned index, JSC::JSValue value) argument
51 select->remove(index);
58 select->setOption(index, option, ec);
/external/webkit/Source/WebCore/platform/qt/
H A DQtStyleOptionWebComboBox.h52 HTMLSelectElement* select = o ? static_cast<HTMLSelectElement*>(o->node()) : 0; local
53 return select ? select->multiple() : false;
/external/chromium-trace/
H A Dsystrace-legacy.py13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
155 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
H A Dsystrace.py13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
155 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
182 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLSelectElementCustom.cpp62 HTMLSelectElement* select = V8HTMLSelectElement::toNative(info.Holder()); local
63 return toOptionsCollectionSetter(index, value, select);
/external/webkit/Source/WebCore/html/
H A DHTMLOptionsCollection.cpp30 HTMLOptionsCollection::HTMLOptionsCollection(PassRefPtr<HTMLSelectElement> select) argument
31 : HTMLCollection(select.get(), SelectOptions, select->collectionInfo())
35 PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(PassRefPtr<HTMLSelectElement> select) argument
37 return adoptRef(new HTMLOptionsCollection(select));
60 HTMLSelectElement* select = static_cast<HTMLSelectElement*>(base()); local
63 select->add(newOption, 0, ec);
65 select->add(newOption, static_cast<HTMLOptionElement*>(item(index)), ec);
H A DHTMLKeygenElement.cpp54 DEFINE_STATIC_LOCAL(AtomicString, pseudoId, ("-webkit-keygen-select"));
70 // Create a select element with one option element for each key size.
74 RefPtr<HTMLSelectElement> select = KeygenSelectElement::create(document); local
78 select->appendChild(option, ec);
82 ensureShadowRoot()->appendChild(select, ec);
92 // Reflect disabled attribute on the shadow select element
H A DHTMLOptGroupElement.cpp82 ContainerNode* select = parentNode(); local
83 while (select && !select->hasTagName(selectTag))
84 select = select->parentNode();
85 if (select)
86 static_cast<HTMLSelectElement*>(select)->setRecalcListItems();
126 ContainerNode* select = parentNode(); local
127 while (select && !select
138 HTMLSelectElement* select = ownerSelectElement(); local
[all...]
H A DValidityState.cpp121 HTMLSelectElement* select = static_cast<HTMLSelectElement*>(element); local
122 return select->valueMissing();
H A DHTMLInputElement.h146 virtual void select() { HTMLTextFormControlElement::select(); } function in class:WebCore::HTMLInputElement
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/spi/
H A DMockAbstractSelector.java77 public int select(long arg0) throws IOException { method in class:MockAbstractSelector
81 public int select() throws IOException { method in class:MockAbstractSelector
/external/chromium/chrome/browser/sessions/
H A Dsession_service_test_helper.cc32 bool select) {
35 if (select)
29 PrepareTabInWindow(const SessionID& window_id, const SessionID& tab_id, int visual_index, bool select) argument
/external/chromium/chrome/browser/ui/
H A Dbrowser_tab_restore_service_delegate.cc45 bool select,
50 extension_app_id, select, pin,
40 AddRestoredTab( const std::vector<TabNavigation>& navigations, int tab_index, int selected_navigation, const std::string& extension_app_id, bool select, bool pin, bool from_last_session, SessionStorageNamespace* storage_namespace) argument
/external/clang/test/SemaCXX/
H A Ddiscrim-union.cpp14 template<unsigned N> struct select {}; // : integral_constant<unsigned, N> {}; struct in namespace:detail
31 constexpr either_impl(select<0>, T &&t) : val(move(t)) {}
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
49 constexpr const T &get(select<0>) { return val; }
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
76 impl(detail::select<impl_t::index(detail::type<U>())>(), move(t.value)) {}
85 decltype(static_cast<const impl_t&>(impl).get(detail::select<
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DProfileDataGridTree.js109 select: function(supressSelectedEvent)
111 WebInspector.DataGridNode.prototype.select.call(this, supressSelectedEvent);
H A Dtreeoutline.js150 child.previousSibling.select();
152 child.nextSibling.select();
154 parent.select();
402 nextSelectedElement.select(false, true);
431 TreeOutline.prototype.select = function()
623 this.select();
811 this.select(false, true);
814 TreeElement.prototype.select = function(supressOnSelect, selectedByUser)
/external/webkit/Source/WebKit/chromium/src/
H A DWebSearchableFormData.cpp97 bool IsSelectInDefaultState(const HTMLSelectElement* select) argument
99 const Vector<Element*>& listItems = select->listItems();
100 if (select->multiple() || select->size() > 1) {
111 // The select is rendered as a combobox (called menulist in WebKit). At
119 // The page specified the option to select.
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dserver_process.py34 import select namespace
192 (read_fds, write_fds, err_fds) = select.select(select_fds, [],
/external/chromium/chrome/common/extensions/docs/js/
H A Dapi_page_generator.js64 Array.prototype.select = function(f) {
313 evalXPathFromId(".//li/a", "gc-toc").select(function(node) {
/external/eigen/Eigen/src/Core/
H A DSelect.h25 * It is the return type of DenseBase::select() and most of the time this is the only way it is used.
27 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const
124 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase
130 /** Version of DenseBase::select(const DenseBase&, const DenseBase&) with
133 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const, class Select
138 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase
145 /** Version of DenseBase::select(const DenseBase&, const DenseBase&) with
148 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const, class Select
153 DenseBase<Derived>::select(typename ElseDerived::Scalar thenScalar, function in class:Eigen::DenseBase
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAXObjectCacheAtk.cpp85 SelectElement* select = toSelectElement(static_cast<Element*>(object->node())); local
86 if (!select)
88 int changedItemIndex = select->activeSelectionStartListIndex();
/external/webkit/Source/WebCore/wml/
H A DWMLOptGroupElement.cpp60 ContainerNode* select = element->parentNode(); local
61 while (select && !select->hasTagName(selectTag))
62 select = select->parentNode();
64 if (!select)
67 return static_cast<WMLSelectElement*>(select);
72 WMLSelectElement* select = ownerSelectElement(this); local
73 if (!select || select
[all...]
H A DWMLOptionElement.cpp59 ContainerNode* select = element->parentNode(); local
60 while (select && !select->hasTagName(selectTag))
61 select = select->parentNode();
63 if (!select)
66 return static_cast<WMLSelectElement*>(select);
71 if (WMLSelectElement* select = ownerSelectElement(this))
72 select->accessKeySetSelectedIndex(OptionElement::optionIndex(select, thi
119 WMLSelectElement* select; local
166 WMLSelectElement* select = ownerSelectElement(this); local
[all...]

Completed in 977 milliseconds

1234