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

12345

/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/chromium_org/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/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/tools/android/adb_profile_chrome/
H A Dui.py6 import select namespace
16 select.select([sys.stdin], [], [], timeout)
/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-trace/
H A Dsystrace-legacy.py13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
157 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
H A Dsystrace.py13 import errno, optparse, os, re, select, subprocess, sys, time, zlib namespace
162 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
189 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
/external/chromium_org/build/android/pylib/
H A Dcmd_helper.py10 import select namespace
149 read_fds, _, _ = select.select([child_fd], [], [], poll_interval)
H A Dchrome_test_server_spawner.py16 import select namespace
144 (in_fds, _, _) = select.select([self.pipe_in, ], [], [],
/external/chromium_org/remoting/webapp/
H A Dmenu_button.js84 * @param {boolean} selected True to select the item, false to deselect it.
87 remoting.MenuButton.select = function(item, selected) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSurroundingTextTest.cpp24 VisibleSelection select(int offset) { return select(offset, offset); } function in class:__anon10368::SurroundingTextTest
25 VisibleSelection select(int start, int end);
43 VisibleSelection SurroundingTextTest::select(int start, int end) function in class:__anon10368::SurroundingTextTest
57 VisibleSelection selection = select(0);
66 VisibleSelection selection = select(0);
76 VisibleSelection selection = select(0);
87 VisibleSelection selection = select(7);
96 VisibleSelection selection = select(6);
105 VisibleSelection selection = select(
[all...]
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_tabrestore.cc92 bool select,
104 !select);
106 int add_types = select ? TabStripModel::ADD_ACTIVE
116 if (select) {
86 AddRestoredTab( Browser* browser, const std::vector<SerializedNavigationEntry>& navigations, int tab_index, int selected_navigation, const std::string& extension_app_id, bool select, bool pin, bool from_last_session, content::SessionStorageNamespace* session_storage_namespace, const std::string& user_agent_override) argument
H A Dbrowser_tab_restore_service_delegate.cc57 bool select,
63 selected_navigation, extension_app_id, select,
52 AddRestoredTab( const std::vector<sessions::SerializedNavigationEntry>& navigations, int tab_index, int selected_navigation, const std::string& extension_app_id, bool select, bool pin, bool from_last_session, SessionStorageNamespace* storage_namespace, const std::string& user_agent_override) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLKeygenElement.cpp60 DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId, ("-webkit-keygen-select", AtomicString::ConstructFromLiteral));
65 // Create a select element with one option element for each key size.
66 RefPtrWillBeRawPtr<HTMLSelectElement> select = HTMLSelectElement::create(document()); local
67 select->setShadowPseudoId(keygenSelectPseudoId);
71 select->appendChild(option);
74 root.appendChild(select);
79 // Reflect disabled attribute on the shadow select element
H A DHTMLOptGroupElement.cpp75 if (HTMLSelectElement* select = Traversal<HTMLSelectElement>::firstAncestor(*this))
76 select->setRecalcListItems();
99 if (HTMLSelectElement* select = ownerSelectElement())
100 select->updateListOnRenderer();
134 HTMLSelectElement* select = ownerSelectElement(); local
136 if (select && !select->focused())
137 select->accessKeyAction(false);
H A DHTMLOptionsCollection.cpp34 HTMLOptionsCollection::HTMLOptionsCollection(ContainerNode& select) argument
35 : HTMLCollection(select, SelectOptions, DoesNotOverrideItemAfter)
37 ASSERT(isHTMLSelectElement(select));
67 PassRefPtrWillBeRawPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(ContainerNode& select, CollectionType) argument
69 return adoptRefWillBeNoop(new HTMLOptionsCollection(select));
91 HTMLSelectElement& select = toHTMLSelectElement(ownerNode()); local
94 select.add(newOption, 0, exceptionState);
96 select.addBeforeOptionAtIndex(newOption, index, exceptionState);
/external/chromium_org/tools/
H A Dnocompile_driver.py20 import select namespace
389 result = select.select(read_set, [], read_set, NCTEST_TERMINATE_TIMEOUT_SEC)
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dmonsoon.py14 import select namespace
276 ready_r, _, ready_x = select.select([self.ser], [], [self.ser], 0)
/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/chromium_org/chrome/browser/sessions/
H A Dsession_service_test_helper.cc28 bool select) {
31 if (select)
25 PrepareTabInWindow(const SessionID& window_id, const SessionID& tab_id, int visual_index, bool select) argument
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
H A Dmanager.js42 function select(selector) { function
102 var filter = select("#filter").value;
145 var table = select("#cookies");
163 var filter = select("#filter").value;
167 select("#filter_count").innerText = domains.length;
168 select("#total_count").innerText = cache.getDomains().length;
170 select("#delete_all_button").innerHTML = "";
175 select("#delete_all_button").appendChild(button);
179 var table = select("#cookies");
203 select("#filte
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSearchableFormData.cpp100 bool IsSelectInDefaultState(HTMLSelectElement* select) argument
102 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = select->listItems();
103 if (select->multiple() || select->size() > 1) {
114 // The select is rendered as a combobox (called menulist in WebKit). At
122 // The page specified the option to select.
/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(const typename ElseDerived::Scalar& thenScalar, function in class:Eigen::DenseBase
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCPUProfileDataGrid.js149 select: function(supressSelectedEvent)
151 WebInspector.DataGridNode.prototype.select.call(this, supressSelectedEvent);
/external/chromium_org/athena/wm/
H A Dwindow_overview_mode.cc269 aura::Window* select = SelectWindowAt(mouse); variable
270 if (select) {
272 delegate_->OnSelectWindow(select);
286 aura::Window* select = SelectWindowAt(gesture); variable
287 if (select) {
289 delegate_->OnSelectWindow(select);

Completed in 988 milliseconds

12345