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

1234567891011>>

/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
H A DPowerPlant.py43 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/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_kqueue.py7 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
[all...]
H A Dtest_select.py3 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
[all...]
H A Dtest_epoll.py27 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
[all...]
H A Dtest_poll.py3 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
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_kqueue.py7 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
[all...]
H A Dtest_select.py3 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
[all...]
H A Dtest_epoll.py27 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
[all...]
H A Dtest_poll.py3 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
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
H A DPowerPlant.py43 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/
H A Dtest_kqueue.py7 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
[all...]
H A Dtest_select.py3 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
[all...]
H A Dtest_epoll.py27 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
[all...]
H A Dtest_poll.py3 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
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_kqueue.py7 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
[all...]
H A Dtest_select.py3 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
[all...]
H A Dtest_epoll.py27 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
[all...]
H A Dtest_poll.py3 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
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dpty.py9 from select import select namespace
147 rfds, wfds, xfds = select(fds, [], [])
/prebuilts/gdb/darwin-x86/lib/python2.7/xml/etree/
H A DElementPath.py98 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...]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dpty.py9 from select import select namespace
147 rfds, wfds, xfds = select(fds, [], [])
/prebuilts/gdb/linux-x86/lib/python2.7/xml/etree/
H A DElementPath.py98 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...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dpty.py9 from select import select namespace
147 rfds, wfds, xfds = select(fds, [], [])
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
H A DElementPath.py98 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...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dpty.py9 from select import select namespace
147 rfds, wfds, xfds = select(fds, [], [])

Completed in 394 milliseconds

1234567891011>>