Home
last modified time | relevance | path

Searched refs:select (Results 1 – 25 of 3142) sorted by relevance

12345678910>>...126

/external/llvm/test/Analysis/CostModel/ARM/
Dselect.ll8 ; CHECK: cost of 1 {{.*}} select
9 %v1 = select i1 undef, i8 undef, i8 undef
10 ; CHECK: cost of 1 {{.*}} select
11 %v2 = select i1 undef, i16 undef, i16 undef
12 ; CHECK: cost of 1 {{.*}} select
13 %v3 = select i1 undef, i32 undef, i32 undef
14 ; CHECK: cost of 2 {{.*}} select
15 %v4 = select i1 undef, i64 undef, i64 undef
16 ; CHECK: cost of 1 {{.*}} select
17 %v5 = select i1 undef, float undef, float undef
[all …]
/external/python/cpython2/Lib/test/
Dtest_epoll.py27 import select
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 …]
Dtest_kqueue.py7 import select
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)
46 self.assertEqual(ev.flags, select.KQ_EV_ADD)
[all …]
Dtest_select.py3 import select
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)
37 rfd, wfd, xfd = select.select([p], [], [], tout)
60 self.assertEqual(select.select([], a, []), ([], a[:5], []))
Dtest_poll.py5 import select
15 select.poll
33 p = select.poll()
46 p.modify(rd, select.POLLIN)
47 p.register(wr, select.POLLOUT)
57 ready_writers = find_ready_matching(ready, select.POLLOUT)
64 ready_readers = find_ready_matching(ready, select.POLLIN)
85 p = select.poll()
88 self.assertEqual(r[0], (FD, select.POLLNVAL))
92 p = select.poll()
[all …]
/external/python/cpython3/Lib/test/
Dtest_epoll.py26 import select
31 if not hasattr(select, "epoll"):
35 select.epoll()
69 ep = select.epoll(16)
77 if hasattr(select, "EPOLL_CLOEXEC"):
78 select.epoll(select.EPOLL_CLOEXEC).close()
79 self.assertRaises(OSError, select.epoll, flags=12356)
82 self.assertRaises(TypeError, select.epoll, 1, 2, 3)
83 self.assertRaises(TypeError, select.epoll, 'foo')
84 self.assertRaises(TypeError, select.epoll, None)
[all …]
Dtest_kqueue.py6 import select
11 if not hasattr(select, "kqueue"):
16 kq = select.kqueue()
29 ev = select.kevent(fd)
30 other = select.kevent(1000)
32 self.assertEqual(ev.filter, select.KQ_FILTER_READ)
33 self.assertEqual(ev.flags, select.KQ_EV_ADD)
46 ev = select.kevent(fd, select.KQ_FILTER_WRITE)
48 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE)
49 self.assertEqual(ev.flags, select.KQ_EV_ADD)
[all …]
Dtest_select.py3 import select
20 self.assertRaises(TypeError, select.select, 1, 2, 3)
21 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
22 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
23 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
24 self.assertRaises(ValueError, select.select, [], [], [], -1)
34 select.select([fd], [], [], 0)
42 r, w, x = select.select([], [], [], 1)
53 rfd, wfd, xfd = select.select([p], [], [], tout)
76 self.assertEqual(select.select([], a, []), ([], a[:5], []))
Dtest_poll.py6 import select
16 select.poll
34 p = select.poll()
47 p.modify(rd, select.POLLIN)
48 p.register(wr, select.POLLOUT)
58 ready_writers = find_ready_matching(ready, select.POLLOUT)
65 ready_readers = find_ready_matching(ready, select.POLLIN)
84 p = select.poll()
87 self.assertEqual(r[0], (FD, select.POLLNVAL))
91 p = select.poll()
[all …]
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_show.cc150 if (opts.select.find(kShown[2]) != opts.select.end()) { in FormatNode()
163 if (opts.select.find(kShown[3]) != opts.select.end()) { in FormatNode()
173 if (opts.select.find(kShown[0]) != opts.select.end()) { in FormatNode()
177 if (opts.select.find(kShown[11]) != opts.select.end()) { in FormatNode()
181 if (opts.select.find(kShown[12]) != opts.select.end()) { in FormatNode()
185 if (opts.select.find(kShown[13]) != opts.select.end()) { in FormatNode()
189 if (opts.select.find(kShown[1]) != opts.select.end()) { in FormatNode()
194 if (opts.select.find(kShown[9]) != opts.select.end() && in FormatNode()
195 opts.select.find(kShown[1]) == opts.select.end()) { in FormatNode()
198 if (opts.select.find(kShown[10]) != opts.select.end() && in FormatNode()
[all …]
Dtfprof_show_multi.cc118 if (opts.select.find(kShown[0]) != opts.select.end()) { in FormatLegend()
121 if (opts.select.find(kShown[11]) != opts.select.end()) { in FormatLegend()
124 if (opts.select.find(kShown[12]) != opts.select.end()) { in FormatLegend()
127 if (opts.select.find(kShown[13]) != opts.select.end()) { in FormatLegend()
130 if (opts.select.find(kShown[1]) != opts.select.end()) { in FormatLegend()
135 if (opts.select.find(kShown[9]) != opts.select.end() && in FormatLegend()
136 opts.select.find(kShown[1]) == opts.select.end()) { in FormatLegend()
139 if (opts.select.find(kShown[10]) != opts.select.end() && in FormatLegend()
140 opts.select.find(kShown[1]) == opts.select.end()) { in FormatLegend()
143 if (opts.select.find(kShown[2]) != opts.select.end()) { in FormatLegend()
[all …]
/external/llvm/test/Analysis/CostModel/AArch64/
Dselect.ll4 ; CHECK-LABEL: select
5 define void @select() {
7 ; CHECK: cost of 1 {{.*}} select
8 %v1 = select i1 undef, i8 undef, i8 undef
9 ; CHECK: cost of 1 {{.*}} select
10 %v2 = select i1 undef, i16 undef, i16 undef
11 ; CHECK: cost of 1 {{.*}} select
12 %v3 = select i1 undef, i32 undef, i32 undef
13 ; CHECK: cost of 1 {{.*}} select
14 %v4 = select i1 undef, i64 undef, i64 undef
[all …]
/external/autotest/frontend/client/src/autotest/common/table/
DListFilter.java13 protected ListBox select; field in ListFilter
18 select = new ExtendedListBox(); in ListFilter()
19 select.setMultipleSelect(isMultipleSelect()); in ListFilter()
20 select.setStylePrimaryName("filter-box"); in ListFilter()
21 select.addChangeHandler(new ChangeHandler() { in ListFilter()
41 if (select.getItemCount() > 0) { in setMatchAllText()
42 select.setItemText(0, allValuesText); in setMatchAllText()
52 return select.getItemText(index); in getItemText()
56 int selected = select.getSelectedIndex(); in getSelectedText()
70 return select.isEnabled() && !getSelectedText().equals(allValuesText); in isActive()
[all …]
/external/llvm/test/Analysis/CostModel/X86/
Dvselect-cost.ll7 ; Verify the cost of vector select instructions.
14 ; SSE2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
15 ; SSE41: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
16 ; AVX: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
17 ; AVX2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
18 %sel = select <2 x i1> <i1 true, i1 false>, <2 x i64> %a, <2 x i64> %b
24 ; SSE2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
25 ; SSE41: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
26 ; AVX: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
27 ; AVX2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1>
[all …]
/external/google-styleguide/
Dstyleguide.xsl10 <xsl:variable name="show_explanation_default" select="0" />
12 <xsl:variable name="show_button_text" select="'&#x25B6;'" />
13 <xsl:variable name="hide_button_text" select="'&#x25BD;'" />
15 <xsl:variable name="button_suffix" select="'__button'"/>
16 <xsl:variable name="body_suffix" select="'__body'"/>
18 <xsl:variable name="show_hide_all_button" select="'show_hide_all_button'"/>
24 <TITLE><xsl:value-of select="@title"/></TITLE>
48 var bodyName = namePrefix + '<xsl:value-of select="$body_suffix"/>';
49 var buttonName = namePrefix + '<xsl:value-of select="$button_suffix"/>';
62 buttonElement.innerHTML = '<xsl:value-of select="$hide_button_text"/>';
[all …]
/external/llvm/test/Transforms/CodeGenPrepare/X86/
Dselect.ll11 %sel = select i1 %cmp, i32 %x, i32 %y
17 ; CHECK: %sel = select i1 %cmp, i32 %x, i32 %y
28 %sel = select i1 %cmp, float %div, float 2.0
33 ; CHECK: br i1 %cmp, label %select.true.sink, label %select.end
34 ; CHECK: select.true.sink:
36 ; CHECK: br label %select.end
37 ; CHECK: select.end:
38 ; CHECK: %sel = phi float [ %div, %select.true.sink ], [ 2.000000e+00, %entry ]
46 %sel = select i1 %cmp, float 4.0, float %div
51 ; CHECK: br i1 %cmp, label %select.end, label %select.false.sink
[all …]
/external/python/cpython3/Lib/
Dselectors.py11 import select
154 def select(self, timeout=None): member in BaseSelector
314 r, w, x = select.select(r, w, w, timeout)
317 _select = select.select
319 def select(self, timeout=None): member in SelectSelector
341 if hasattr(select, 'poll'):
348 self._poll = select.poll()
354 poll_events |= select.POLLIN
356 poll_events |= select.POLLOUT
365 def select(self, timeout=None): member in PollSelector
[all …]
/external/testng/eclipse-projects/beust.com/web/
Dsite.xsl5 <xsl:for-each select="site">
13 <p class="bodyText"><xsl:value-of select="description"/></p>
15 <xsl:for-each select="category-def">
16 <xsl:sort select="@label" order="ascending" case-order="upper-first"/>
17 <xsl:sort select="@name" order="ascending" case-order="upper-first"/>
21 <xsl:value-of select="@name"/>
24 <xsl:value-of select="@label"/>
27 <xsl:for-each select="key('cat',@name)">
28 <xsl:sort select="ancestor::feature//@version" order="ascending"/>
29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
[all …]
/external/llvm/test/Transforms/InstCombine/
Dabs_abs.ll6 %cond = select i1 %cmp, i32 %x, i32 %sub
9 %cond18 = select i1 %cmp1, i32 %cond, i32 %sub16
14 ; CHECK-NEXT: [[SEL:%[a-z0-9]+]] = select i1 [[CMP]], i32 %x, i32 [[NEG]]
21 %cond = select i1 %cmp, i32 %x, i32 %sub
24 %cond18 = select i1 %cmp1, i32 %cond, i32 %sub16
29 ; CHECK-NEXT: [[SEL:%[a-z0-9]+]] = select i1 [[CMP]], i32 %x, i32 [[NEG]]
36 %cond = select i1 %cmp, i32 %sub, i32 %x
39 %cond18 = select i1 %cmp1, i32 %cond, i32 %sub16
44 ; CHECK-NEXT: [[SEL:%[a-z0-9]+]] = select i1 [[CMP]], i32 [[NEG]], i32 %x
51 %cond = select i1 %cmp, i32 %sub, i32 %x
[all …]
/external/python/cpython2/Lib/xml/etree/
DElementPath.py98 def select(context, result): function
103 return select
106 def select(context, result): function
110 return select
113 def select(context, result): function
116 return select
126 def select(context, result): function
131 return select
134 def select(context, result): function
144 return select
[all …]
/external/python/cpython3/Lib/xml/etree/
DElementPath.py98 def select(context, result): function
103 return select
106 def select(context, result): function
109 return select
112 def select(context, result): function
114 return select
127 def select(context, result): function
132 return select
135 def select(context, result): function
145 return select
[all …]
/external/llvm/test/CodeGen/AMDGPU/
Dpromote-alloca-to-lds-select.ll5 ; CHECK: select i1 undef, i32* undef, i32* %alloca
8 %select = select i1 undef, i32* undef, i32* %alloca
9 store i32 0, i32* %select, align 4
17 ; CHECK: %select = select i1 undef, i32 addrspace(3)* %ptr0, i32 addrspace(3)* %ptr1
18 ; CHECK: store i32 0, i32 addrspace(3)* %select, align 4
23 %select = select i1 undef, i32* %ptr0, i32* %ptr1
24 store i32 0, i32* %select, align 4
35 ; CHECK: %select = select i1 undef, i32* %ptr0, i32* %ptr1
41 %select = select i1 undef, i32* %ptr0, i32* %ptr1
42 store i32 0, i32* %select, align 4
[all …]
Dselect-vectors.ll15 %select = select i1 %cmp, <4 x i8> %a, <4 x i8> %b
16 store <4 x i8> %select, <4 x i8> addrspace(1)* %out, align 4
27 %select = select i1 %cmp, <4 x i16> %a, <4 x i16> %b
28 store <4 x i16> %select, <4 x i16> addrspace(1)* %out, align 4
33 ; vector select with SGPR inputs.
41 %select = select i1 %cmp, <2 x i32> %a, <2 x i32> %b
42 store <2 x i32> %select, <2 x i32> addrspace(1)* %out, align 8
54 %select = select i1 %cmp, <4 x i32> %a, <4 x i32> %b
55 store <4 x i32> %select, <4 x i32> addrspace(1)* %out, align 16
71 %tmp3 = select i1 %tmp2, <4 x i32> %val, <4 x i32> zeroinitializer
[all …]
/external/llvm/test/CodeGen/Mips/
Dselpat.ll20 %cond = select i1 %cmp, i32 %2, i32 %3
28 %cond10 = select i1 %cmp6, i32 %3, i32 %2
41 %cond = select i1 %cmp, i32 %1, i32 %2
47 %cond5 = select i1 %cmp1, i32 %2, i32 %1
51 %cond10 = select i1 %cmp6, i32 %2, i32 %1
57 %cond15 = select i1 %cmp11, i32 %1, i32 %2
68 %cond = select i1 %cmp, i32 %1, i32 %2
74 %cond5 = select i1 %cmp1, i32 %2, i32 %1
78 %cond10 = select i1 %cmp6, i32 %1, i32 %2
91 %cond = select i1 %cmp, i32 %2, i32 %3
[all …]
/external/llvm/test/CodeGen/ARM/
Dvminmaxnm.ll10 %cond = select i1 %cmp, float %a, float %b
19 %cond = select i1 %cmp, double %a, double %b
28 %cond = select i1 %cmp, float %b, float %a
37 %cond = select i1 %cmp, double %b, double %a
46 %cond = select i1 %cmp, float %a, float %b
55 %cond = select i1 %cmp, float %a, float %b
64 %cond = select i1 %cmp, float %b, float %a
73 %cond = select i1 %cmp, double %b, double %a
82 %cond = select i1 %cmp, float %a, float %b
91 %cond = select i1 %cmp, float %a, float %b
[all …]

12345678910>>...126