HomeSort by relevance Sort by last modified time
    Searched defs:select (Results 1 - 25 of 321) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
select.S 6 ENTRY(select) function
18 END(select)
  /bionic/libc/arch-mips/syscalls/
select.S 4 .globl select
6 .ent select
8 select: label
22 .end select
  /bionic/libc/arch-x86/syscalls/
select.S 6 ENTRY(select) function
33 END(select)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
select.c 8 int select(int nfds, fd_set* readfds, fd_set* writefds, function
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-gap.js 39 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/v8/test/mjsunit/compiler/
regress-gap.js 39 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));
  /packages/apps/Email/src/com/android/email/provider/
FolderPickerCallback.java 23 public void select(Folder folder); method in interface:FolderPickerCallback
  /libcore/luni/src/main/java/java/net/
ProxySelector.java 117 public abstract List<Proxy> select(URI uri); method in class:ProxySelector
ProxySelectorImpl.java 31 @Override public List<Proxy> select(URI uri) { method in class:ProxySelectorImpl
  /external/chromium-trace/
systrace-legacy.py 13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
157 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
  /external/chromium_org/remoting/webapp/
menu_button.js 83 * @param {boolean} selected True to select the item, false to deselect it.
86 remoting.MenuButton.select = function(item, selected) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLKeygenElement.cpp 54 DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId, ("-webkit-keygen-select", AtomicString::ConstructFromLiteral));
59 // Create a select element with one option element for each key size.
60 RefPtr<HTMLSelectElement> select = HTMLSelectElement::create(document()); local
61 select->setPseudo(keygenSelectPseudoId);
65 select->appendChild(option);
68 root.appendChild(select);
73 // Reflect disabled attribute on the shadow select element
HTMLOptionsCollection.cpp 33 HTMLOptionsCollection::HTMLOptionsCollection(Node* select)
34 : HTMLCollection(select, SelectOptions, DoesNotOverrideItemAfter)
36 ASSERT(select->hasTagName(HTMLNames::selectTag));
40 PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(Node* select, CollectionType)
42 return adoptRef(new HTMLOptionsCollection(select));
64 HTMLSelectElement* select = toHTMLSelectElement(ownerNode()); local
67 select->add(newOption, 0, exceptionState);
69 select->add(newOption, toHTMLOptionElement(item(index)), exceptionState);
HTMLOptGroupElement.cpp 84 ContainerNode* select = parentNode(); local
85 while (select && !select->hasTagName(selectTag))
86 select = select->parentNode();
87 if (select)
88 toHTMLSelectElement(select)->setRecalcListItems();
96 // renderer like <optgroup> or if it doesn't allow children like <select>.
139 ContainerNode* select = parentNode(); local
140 while (select && !select->hasTagName(selectTag)
151 HTMLSelectElement* select = ownerSelectElement(); local
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
Selector.java 31 * By invoking the {@code select} method, the key set is checked and all keys
32 * that have been canceled since last select operation are moved to the set of
33 * canceled keys. During the select operation, the channels registered with this
57 * Closes this selector. Ongoing calls to the {@code select} methods of this
107 public abstract int select() throws IOException; method in class:Selector
127 public abstract int select(long timeout) throws IOException; method in class:Selector
155 * Forces blocked {@code select} operations to return immediately.
157 * If no {@code select} operation is blocked when {@code wakeup()} is called
158 * then the next {@code select} operation will return immediately. This can
160 * {@code selectNow()}, a subsequent call of {@code select} can bloc
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
PowerPlant.py 43 def select(self, _object, _attributes={}, **_arguments): member in class:PowerPlant_Events
44 """select: Sets the present selection
45 Required argument: object to select or container of sub-objects to select
46 Keyword argument data: sub-object(s) to select
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 7 import select namespace
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
26 ev = select.kevent(fd)
27 other = select.kevent(1000)
29 self.assertEqual(ev.filter, select.KQ_FILTER_READ)
30 self.assertEqual(ev.flags, select.KQ_EV_ADD)
43 ev = select.kevent(fd, select.KQ_FILTER_WRITE)
45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE
    [all...]
test_select.py 3 import select namespace
19 self.assertRaises(TypeError, select.select, 1, 2, 3)
20 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
21 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
22 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
26 r, w, x = select.select([], [], [], 1
    [all...]
test_epoll.py 27 import select namespace
31 if not hasattr(select, "epoll"):
35 select.epoll()
70 ep = select.epoll(16)
80 self.assertRaises(TypeError, select.epoll, 1, 2, 3)
81 self.assertRaises(TypeError, select.epoll, 'foo')
82 self.assertRaises(TypeError, select.epoll, None)
83 self.assertRaises(TypeError, select.epoll, ())
84 self.assertRaises(TypeError, select.epoll, ['foo'])
85 self.assertRaises(TypeError, select.epoll, {}
    [all...]
test_poll.py 3 import os, select, random, unittest namespace
8 select.poll
10 raise unittest.SkipTest, "select.poll not defined -- skipping test_poll"
26 p = select.poll()
39 p.modify(rd, select.POLLIN)
40 p.register(wr, select.POLLOUT)
50 ready_writers = find_ready_matching(ready, select.POLLOUT)
57 ready_readers = find_ready_matching(ready, select.POLLIN)
78 p = select.poll()
81 self.assertEqual(r[0], (FD, select.POLLNVAL)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 7 import select namespace
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
26 ev = select.kevent(fd)
27 other = select.kevent(1000)
29 self.assertEqual(ev.filter, select.KQ_FILTER_READ)
30 self.assertEqual(ev.flags, select.KQ_EV_ADD)
43 ev = select.kevent(fd, select.KQ_FILTER_WRITE)
45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE
    [all...]
test_select.py 3 import select namespace
19 self.assertRaises(TypeError, select.select, 1, 2, 3)
20 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
21 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
22 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
26 r, w, x = select.select([], [], [], 1
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 109 * <context select="...">
119 String select = element.getAttribute("select"); local
120 Context context = new Context(inputSource, url, select);
152 final String select = element.getAttribute("select"); local
154 /* Such as <test exception="true" select="..." count="0"/> */
156 return new XPathTest(context, select) {
159 xpath.evaluate(select, contextNode);
167 /* a <test> with a nested <valueOf>, both of which have select attributes *
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 9 from select import select namespace
147 rfds, wfds, xfds = select(fds, [], [])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 98 def select(context, result): function in function:prepare_child
103 return select
106 def select(context, result): function in function:prepare_star
110 return select
113 def select(context, result): function in function:prepare_self
116 return select
126 def select(context, result): function in function:prepare_descendant
131 return select
134 def select(context, result): function in function:prepare_parent
144 return select
165 def select(context, result): function in function:prepare_predicate
174 def select(context, result): function in function:prepare_predicate
182 def select(context, result): function in function:prepare_predicate
191 def select(context, result): function in function:prepare_predicate
212 def select(context, result): function in function:prepare_predicate
    [all...]

Completed in 532 milliseconds

1 2 3 4 5 6 7 8 91011>>