Home
last modified time | relevance | path

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

12345678910>>...115

/third_party/ffmpeg/libavfilter/
Df_select.c157 double select; member
176 SelectContext *select = ctx->priv; in init() local
179 if ((ret = av_expr_parse(&select->expr, select->expr_str, in init()
182 select->expr_str); in init()
185 select->do_scene_detect = !!strstr(select->expr_str, "scene"); in init()
187 for (i = 0; i < select->nb_outputs; i++) { in init()
210 SelectContext *select = inlink->dst->priv; in config_input() local
216 select->bitdepth = desc->comp[0].depth; in config_input()
217 select->nb_planes = is_yuv ? 1 : av_pix_fmt_count_planes(inlink->format); in config_input()
219 for (int plane = 0; plane < select->nb_planes; plane++) { in config_input()
[all …]
/third_party/python/Lib/test/
Dtest_epoll.py26 import select
31 if not hasattr(select, "epoll"):
35 select.epoll()
67 ep = select.epoll(16)
76 if hasattr(select, "EPOLL_CLOEXEC"):
77 select.epoll(-1, select.EPOLL_CLOEXEC).close()
78 select.epoll(flags=select.EPOLL_CLOEXEC).close()
79 select.epoll(flags=0).close()
82 self.assertRaises(TypeError, select.epoll, 1, 2, 3)
83 self.assertRaises(TypeError, select.epoll, 'foo')
[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
22 self.assertRaises(TypeError, select.select, 1, 2, 3)
23 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
24 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
25 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
26 self.assertRaises(ValueError, select.select, [], [], [], -1)
36 select.select([fd], [], [], 0)
44 r, w, x = select.select([], [], [], 1)
63 rfd, wfd, xfd = select.select([pipe], [], [], timeout)
88 self.assertEqual(select.select([], a, []), ([], a[:5], []))
[all …]
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 …]
Dtest_devpoll.py7 import select
11 if not hasattr(select, 'devpoll') :
28 p = select.devpoll()
41 p.modify(rd, select.POLLIN)
42 p.register(wr, select.POLLOUT)
52 ready_writers = find_ready_matching(ready, select.POLLOUT)
59 ready_readers = find_ready_matching(ready, select.POLLIN)
75 pollster = select.devpoll()
95 devpoll = select.devpoll()
110 self.assertRaises(ValueError, devpoll.modify, fd, select.POLLIN)
[all …]
/third_party/parse5/test/data/parser-feedback/
Dtests17.test4 "description": "<!doctype html><table><tbody><select><tr>",
5 "input": "<!doctype html><table><tbody><select><tr>",
26 "select",
37 "description": "<!doctype html><table><tr><select><td>",
38 "input": "<!doctype html><table><tr><select><td>",
59 "select",
70 "description": "<!doctype html><table><tr><td><select><td>",
71 "input": "<!doctype html><table><tr><td><select><td>",
97 "select",
108 "description": "<!doctype html><table><tr><th><select><td>",
[all …]
Dtables01.test162 "description": "<table><select><option>3</select></table>",
163 "input": "<table><select><option>3</select></table>",
172 "select",
186 "select"
195 "description": "<table><select><table></table></select></table>",
196 "input": "<table><select><table></table></select></table>",
205 "select",
219 "select"
228 "description": "<table><select></table>",
229 "input": "<table><select></table>",
[all …]
/third_party/boost/boost/type_traits/detail/
Dcommon_arithmetic_type.hpp175 static arithmetic_type<1>::result_type select( arithmetic_type<1>::type );
176 static arithmetic_type<2>::result_type select( arithmetic_type<2>::type );
178 static arithmetic_type<3>::result_type select( arithmetic_type<3>::type );
180 static arithmetic_type<4>::result_type select( arithmetic_type<4>::type );
181 static arithmetic_type<5>::result_type select( arithmetic_type<5>::type );
182 static arithmetic_type<6>::result_type select( arithmetic_type<6>::type );
183 static arithmetic_type<7>::result_type select( arithmetic_type<7>::type );
184 static arithmetic_type<8>::result_type select( arithmetic_type<8>::type );
185 static arithmetic_type<9>::result_type select( arithmetic_type<9>::type );
186 static arithmetic_type<10>::result_type select( arithmetic_type<10>::type );
[all …]
/third_party/skia/tests/sksl/runtime/
DSwitchWithLoops.skvm18 16 r11 = select r14 r13 r11
20 18 r11 = select r14 r13 r11
25 23 r11 = select r13 r12 r11
28 26 r11 = select r13 r15 r11
33 31 r11 = select r15 r14 r11
35 33 r11 = select r15 r14 r11
40 38 r11 = select r14 r13 r11
42 40 r11 = select r14 r13 r11
47 45 r11 = select r13 r15 r11
49 47 r11 = select r13 r15 r11
[all …]
/third_party/typescript/tests/baselines/reference/
DsubstitutionTypesInIndexedAccessTypes.types7 select?: boolean
8 >select : boolean | undefined
24 >boundaryResult : { select: true; }
25 >withBoundary({ select: true,}) : { select: true; }
27 >{ select: true,} : { select: true; }
29 select: true,
30 >select : true
36 >withoutBoundaryResult : { select: true; }
37 >withoutBoundary({ select: true,}) : { select: true; }
39 >{ select: true,} : { select: true; }
[all …]
DinterfaceExtendsClass1.symbols12 select(): void;
13 >select : Symbol(SelectableControl.select, Decl(interfaceExtendsClass1.ts, 3, 45))
19 select() { }
20 >select : Symbol(Button.select, Decl(interfaceExtendsClass1.ts, 6, 30))
26 select() { }
27 >select : Symbol(TextBox.select, Decl(interfaceExtendsClass1.ts, 9, 31))
36 select() { }
37 >select : Symbol(Location.select, Decl(interfaceExtendsClass1.ts, 14, 16))
Dinheritance1.errors.txt2 Property 'select' is missing in type 'ImageBase' but required in type 'SelectableControl'.
5 tests/cases/compiler/inheritance1.ts(31,1): error TS2741: Property 'select' is missing in type 'Con…
6 tests/cases/compiler/inheritance1.ts(37,1): error TS2741: Property 'select' is missing in type 'Con…
7 tests/cases/compiler/inheritance1.ts(40,1): error TS2741: Property 'select' is missing in type 'Ima…
8 tests/cases/compiler/inheritance1.ts(46,1): error TS2741: Property 'select' is missing in type 'Ima…
11 tests/cases/compiler/inheritance1.ts(55,1): error TS2741: Property 'select' is missing in type 'Con…
14 tests/cases/compiler/inheritance1.ts(61,1): error TS2741: Property 'select' is missing in type 'Con…
22 select(): void;
26 select() { }
29 select() { }
[all …]
DinterfaceExtendsClass1.types9 select(): void;
10 >select : () => void
16 select() { }
17 >select : () => void
23 select() { }
24 >select : () => void
33 select() { }
34 >select : () => void
/third_party/typescript/tests/cases/fourslash/
DrefactorConvertToGetAccessAndSetAccess35.ts15 goTo.select("a", "b");
18 goTo.select("c", "d");
21 goTo.select("e", "f");
24 goTo.select("g", "h");
27 goTo.select("i", "j");
30 goTo.select("k", "l");
33 goTo.select("m", "n");
36 goTo.select("o", "p");
39 goTo.select("q", "r");
42 goTo.select("s", "t");
[all …]
DrefactorAddOrRemoveBracesToArrowFunction22.ts5 goTo.select("a", "b");
8 goTo.select("c", "d");
11 goTo.select("e", "f");
14 goTo.select("g", "h");
17 goTo.select("i", "j");
20 goTo.select("k", "l");
23 goTo.select("m", "n");
26 goTo.select("o", "p");
/third_party/python/Lib/xml/etree/
DElementPath.py118 def select(context, result): function
124 def select(context, result): function
134 def select(context, result): function
143 def select(context, result): function
150 return select
157 def select(context, result): function
165 def select(context, result): function
170 return select
173 def select(context, result): function
176 return select
[all …]
/third_party/python/Lib/
Dselectors.py12 import select
156 def select(self, timeout=None): member in BaseSelector
315 r, w, x = select.select(r, w, w, timeout)
318 _select = select.select
320 def select(self, timeout=None): member in SelectSelector
403 def select(self, timeout=None): member in _PollLikeSelector
432 if hasattr(select, 'poll'):
436 _selector_cls = select.poll
437 _EVENT_READ = select.POLLIN
438 _EVENT_WRITE = select.POLLOUT
[all …]
/third_party/boost/tools/docca/include/docca/
Dbase-extract-xml-pages.xsl22 <xsl:variable name="index-xml" select="/"/>
26 <xsl:apply-templates select="/doxygenindex/compound"/>
29 <xsl:value-of select="replace(d:extract-ns('put'), '::$', '')"/>
31 <xsl:value-of select="replace(d:extract-ns('foobar::parser::put'), '::$', '')"/>
33 <xsl:value-of select="d:extract-ns('foobar::parser::put&lt;foo::bar, bat::bang>')"/>
35 …<xsl:value-of select="d:strip-ns('boost::beast::http::parser::basic_parser&lt; foo::isRequest, bar…
37 …<xsl:value-of select="d:strip-doc-ns('boost::beast::http::parser::basic_parser&lt; foo::isRequest,…
40 …<xsl:value-of select="d:make-id('boost::beast::http::parser::basic_parser&lt; foo::isRequest, bar:…
47 <xsl:sequence select="false()"/>
53 <xsl:variable name="source-doc" select="d:get-source-doc(.)"/>
[all …]
Dcommon.xsl7 <xsl:variable name="nl" select="'&#xA;'"/>
9 <xsl:variable name="leading-ns-regex" select="'^([^:&lt;]+::)+'"/>
13 <xsl:sequence select="replace(d:extract-ns($name), '::$', '')"/>
18 <xsl:sequence select="replace($name, '('||$leading-ns-regex||').*', '$1')"/>
24 <xsl:sequence select="replace($name, $leading-ns-regex, '')"/>
31 <xsl:sequence select="if ($name eq $doc-ns)
38 <xsl:sequence select="d:perform-replacements($name, $id-replacements)"/>
44 <xsl:variable name="next" select="head($replacements)"/>
45 <xsl:variable name="rest" select="tail($replacements)"/>
46 <xsl:sequence select="if (exists($next))
[all …]
/third_party/skia/tests/sksl/intrinsics/
DMixBool.metal21select(intGreen.x, intRed.x, false) == intGreen.x && all(select(intGreen.xy, intRed.xy, bool2(fals…
/third_party/wayland_standard/doc/publican/
Dmerge-mapcoords.xsl12 <xsl:apply-templates select="@*|node()"/>
17 <xsl:apply-templates select="@*|node()"/>
26 <xsl:apply-templates select="@*"/>
28 <xsl:variable name="pngfile" select="../imageobject/imagedata/@fileref"/>
29 …<xsl:variable name="mapfile" select="concat(substring($pngfile, 1, string-length($pngfile)-3), 'ma…
30 <xsl:variable name="maproot" select="document(concat($basedir, '/', $mapfile))"/>
33 <xsl:for-each select="area">
34 <xsl:variable name="anchor" select="."/>
35 <xsl:variable name="other" select="($maproot)//area[@href=($anchor)/@x_steal]"/>
41 <xsl:value-of select="@id"/>
[all …]
/third_party/boost/boost/detail/
Dnamed_template_params.hpp28 struct select { struct
49 struct select { struct
51 typedef typename Gen::template select<Base,Traits>::type type; argument
56 struct select { struct
89 ::template select<Arg, DefaultGen, Base, Traits>::type type;
102 template <class Prev> struct select { typedef Prev type; }; struct
105 template <class Prev> struct select { struct
125 typedef typename Selector::template select<PreviousArg>::type type;
142 struct select { \
150 template <class Base, class Arg, class Traits> struct select { \
[all …]
/third_party/glslang/Test/baseResults/
Dhlsl.logicalConvert.frag.out8 0:3 Test condition and select ( temp void)
19 0:5 Test condition and select ( temp void)
30 0:7 Test condition and select ( temp void)
41 0:9 Test condition and select ( temp void)
52 0:11 Test condition and select ( temp void)
63 0:13 Test condition and select ( temp void)
74 0:15 Test condition and select ( temp void)
85 0:17 Test condition and select ( temp void)
96 0:19 Test condition and select ( temp void)
107 0:21 Test condition and select ( temp void)
[all …]
/third_party/mindspore/mindspore/nn/layer/
Dmath.py244 self.select = P.Select()
255 z = self.select(need_to_reflect, neg_input, x - 1)
273 …x = self.select(self.lessequal(x, 0.0), self.select(self.equal(abs_frac_input, 0.0), infinity, x),…
274 reduced_frac_input = self.select(self.greater(abs_frac_input, 0.5),
278 reflection = self.select(self.isfinite(reflection_denom),
282 result = self.select(need_to_reflect, reflection, log_y)
284 return self.select(self.isfinite(x), result, infinity)
347 self.select = P.Select()
357 z = self.select(need_to_reflect, neg_input, x - 1)
376 real_result = self.select(need_to_reflect, reflection, y)
[all …]

12345678910>>...115