/third_party/ffmpeg/libavfilter/ |
H A D | f_select.c | 159 double select; member 178 SelectContext *select = ctx->priv; in init() local 181 if ((ret = av_expr_parse(&select->expr, select->expr_str, in init() 184 select->expr_str); in init() 187 select->do_scene_detect = !!strstr(select->expr_str, "scene"); in init() 189 for (i = 0; i < select->nb_outputs; i++) { in init() 210 SelectContext *select = inlink->dst->priv; in config_input() local 216 select in config_input() 276 SelectContext *select = ctx->priv; get_scene_score() local 330 SelectContext *select = ctx->priv; select_frame() local 415 SelectContext *select = ctx->priv; filter_frame() local 434 SelectContext *select = ctx->priv; uninit() local 451 SelectContext *select = ctx->priv; aselect_init() local 490 SelectContext *select = ctx->priv; query_formats() local 508 AVFILTER_DEFINE_CLASS(select); global() variable [all...] |
/third_party/python/Lib/test/ |
H A D | test_epoll.py | 26 import select namespace 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 [all...] |
H A D | test_kqueue.py | 6 import select namespace 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 [all...] |
H A D | test_select.py | 3 import select namespace 24 self.assertRaises(TypeError, select.select, 1, 2, 3) 25 self.assertRaises(TypeError, select.select, [self.Nope()], [], []) 26 self.assertRaises(TypeError, select.select, [self.Almost()], [], []) 27 self.assertRaises(TypeError, select.select, [], [], [], "not a number") 28 self.assertRaises(ValueError, select [all...] |
H A D | test_poll.py | 6 import select namespace 18 select.poll 20 raise unittest.SkipTest("select.poll not defined") 37 p = select.poll() 50 p.modify(rd, select.POLLIN) 51 p.register(wr, select.POLLOUT) 61 ready_writers = find_ready_matching(ready, select.POLLOUT) 68 ready_readers = find_ready_matching(ready, select.POLLIN) 87 p = select.poll() 90 self.assertEqual(r[0], (FD, select [all...] |
H A D | test_devpoll.py | 1 # Test case for the select.devpoll() function 7 import select namespace 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 [all...] |
H A D | _test_eintr.py | 16 import select namespace 433 """ EINTR tests for the select module. """ 437 select.select([], [], [], self.sleep_time) 444 @unittest.skipUnless(hasattr(select, 'poll'), 'need select.poll') 446 poller = select.poll() 454 @unittest.skipUnless(hasattr(select, 'epoll'), 'need select.epoll') 456 poller = select [all...] |
/third_party/python/Lib/xml/etree/ |
H A D | ElementPath.py | 118 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 179 def select(context, result): global() function 197 def select(context, result): global() function 207 def select(context, result): global() function 215 def select(context, result): global() function 251 def select(context, result): global() function 260 def select(context, result): global() function 272 def select(context, result): global() function 284 def select(context, result): global() function 297 def select(context, result): global() function 325 def select(context, result): global() function [all...] |
/third_party/python/Lib/ |
H A D | selectors.py | 4 `select` module primitives. 12 import select namespace 90 A selector can use various implementations (select(), poll(), epoll()...) 155 def select(self, timeout=None): member in BaseSelector 162 if timeout <= 0, the select() call won't block, and will 164 if timeout is None, select() will block until a monitored 314 r, w, x = select.select(r, w, w, timeout) 317 _select = select.select 319 def select(self, timeout=None): global() member in SelectSelector 402 def select(self, timeout=None): global() member in _PollLikeSelector 451 def select(self, timeout=None): global() member in _PollLikeSelector.EpollSelector 553 def select(self, timeout=None): global() member in _PollLikeSelector.KqueueSelector [all...] |
H A D | asyncore.py | 39 If your operating system supports the select() system call in its I/O 49 import select namespace 112 if flags & select.POLLIN: 114 if flags & select.POLLOUT: 116 if flags & select.POLLPRI: 118 if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): 149 r, w, e = select.select( [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/checkbox/ |
H A D | checkbox_select_test.cpp | 22 int32_t select = true; in TestCheckboxSelect001() local 23 ArkUI_NumberValue select_value[] = {{.i32 = select}}; in TestCheckboxSelect001() 27 ASSERT_EQ(nodeAPI->getAttribute(checkbox, NODE_CHECKBOX_SELECT)->value[PARAM_0].i32, select); in TestCheckboxSelect001() 34 int32_t select = false; in TestCheckboxSelect002() local 35 ArkUI_NumberValue select_value[] = {{.i32 = select}}; in TestCheckboxSelect002() 39 ASSERT_EQ(nodeAPI->getAttribute(checkbox, NODE_CHECKBOX_SELECT)->value[PARAM_0].i32, select); in TestCheckboxSelect002()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | inheritance1.js | 6 select(): void; 10 select() { } 13 select() { } 20 select() { } 23 select() { } 90 Button.prototype.select = function () { };
98 TextBox.prototype.select = function () { };
118 Locations.prototype.select = function () { };
124 Locations1.prototype.select = function () { };
|
H A D | substitutionTypesInIndexedAccessTypes.js | 5 select?: boolean 14 select: true, 18 select: true, 26 select: true
29 select: true
|
/third_party/icu/icu4c/source/i18n/ |
H A D | upluralrules.cpp | 41 UnicodeString select(const PluralRules &rules, const Formattable& obj, const NumberFormat& fmt, UErrorCode& status) { in select() function 48 return rules.select(dq); in select() 53 return rules.select(number); in select() 93 UnicodeString result = ((PluralRules*)uplrules)->select(number); in uplrules_select() 115 UnicodeString result = ((PluralRules*)uplrules)->select(*dq); in uplrules_selectFormatted() 134 UnicodeString result = ((PluralRules*)uplrules)->select(impl, *status); in uplrules_selectForRange() 155 UnicodeString result = select(*plrules, obj, *nf, *status); in uplrules_selectWithFormat()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | upluralrules.cpp | 41 UnicodeString select(const PluralRules &rules, const Formattable& obj, const NumberFormat& fmt, UErrorCode& status) { in select() function 48 return rules.select(dq); in select() 53 return rules.select(number); in select() 93 UnicodeString result = ((PluralRules*)uplrules)->select(number); in uplrules_select() 115 UnicodeString result = ((PluralRules*)uplrules)->select(*dq); in uplrules_selectFormatted() 134 UnicodeString result = ((PluralRules*)uplrules)->select(impl, *status); in uplrules_selectForRange() 155 UnicodeString result = select(*plrules, obj, *nf, *status); in uplrules_selectWithFormat()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | upluralrules.cpp | 41 UnicodeString select(const PluralRules &rules, const Formattable& obj, const NumberFormat& fmt, UErrorCode& status) { in select() function 48 return rules.select(dq); in select() 53 return rules.select(number); in select() 93 UnicodeString result = ((PluralRules*)uplrules)->select(number); in uplrules_select() 115 UnicodeString result = ((PluralRules*)uplrules)->select(*dq); in uplrules_selectFormatted() 134 UnicodeString result = ((PluralRules*)uplrules)->select(impl, *status); in uplrules_selectForRange() 155 UnicodeString result = select(*plrules, obj, *nf, *status); in uplrules_selectWithFormat()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/ |
H A D | 11-1.c | 21 #include <sys/select.h> 64 select(0, NULL, NULL, NULL, &tv); in main() 72 /* delay to allow child to get into select call */ in main() 75 select(0, NULL, NULL, NULL, &tv); in main() 88 select(0, NULL, NULL, NULL, &tv); in main() 96 if (!select(0, NULL, NULL, NULL, &tv)) in main()
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | plurrule.h | 74 * of a series of keywords and conditions. The {@link #select} method 195 * {@link #select} method. 199 * UnicodeString keyword = pl->select(number); 344 UnicodeString select(int32_t number) const; 355 UnicodeString select(double number) const; 372 UnicodeString select(const number::FormattedNumber& number, UErrorCode& status) const; 390 UnicodeString select(const number::FormattedNumberRange& range, UErrorCode& status) const; 396 UnicodeString select(const IFixedDecimal &number) const; 400 UnicodeString select(const number::impl::UFormattedNumberRangeData* urange, UErrorCode& status) const; 431 * Originally intended to return all the values for which select() woul [all...] |
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | plurrule.h | 74 * of a series of keywords and conditions. The {@link #select} method 195 * {@link #select} method. 199 * UnicodeString keyword = pl->select(number); 344 UnicodeString select(int32_t number) const; 355 UnicodeString select(double number) const; 372 UnicodeString select(const number::FormattedNumber& number, UErrorCode& status) const; 390 UnicodeString select(const number::FormattedNumberRange& range, UErrorCode& status) const; 396 UnicodeString select(const IFixedDecimal &number) const; 400 UnicodeString select(const number::impl::UFormattedNumberRangeData* urange, UErrorCode& status) const; 431 * Originally intended to return all the values for which select() woul [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | plurrule.h | 68 * of a series of keywords and conditions. The {@link #select} method 189 * {@link #select} method. 193 * UnicodeString keyword = pl->select(number); 346 UnicodeString select(int32_t number) const; 357 UnicodeString select(double number) const; 374 UnicodeString select(const number::FormattedNumber& number, UErrorCode& status) const; 393 UnicodeString select(const number::FormattedNumberRange& range, UErrorCode& status) const; 400 UnicodeString select(const IFixedDecimal &number) const; 404 UnicodeString select(const number::impl::UFormattedNumberRangeData* urange, UErrorCode& status) const; 435 * Originally intended to return all the values for which select() woul [all...] |
/third_party/astc-encoder/Source/ |
H A D | astcenc_vecmathlib.h | 231 vfloat y = select(x, vfloat(1.0f) / x, c); in atan() 233 return select(y, z - y, c); in atan() 391 return select(estimate, vfloat4(1.0f), zero_mask); in pow() 467 vint4 r = select(p, fp16_one, is_one); 468 r = select(r, fp16_small, is_small); 489 mt = select(mt, mc_1536, mask_1536); 490 mt = select(mt, mc_512, mask_512); 538 a = select(a1b, a1a, exp_lt_m13); 539 exp = select(expb, expa, exp_lt_m13); 549 a = select( [all...] |
H A D | astcenc_averages_and_directions.cpp | 31 * color accumulators, using select() to mask texel lanes in other partitions. 202 * color accumulators, using select() to mask texel lanes in other partitions. 423 sum_xp += select(zero, texel_datum, tdm0); 426 sum_yp += select(zero, texel_datum, tdm1); 429 sum_zp += select(zero, texel_datum, tdm2); 432 sum_wp += select(zero, texel_datum, tdm3); 444 best_vector = select(best_vector, sum_yp, mask); 445 best_sum = select(best_sum, prod_yp, mask); 448 best_vector = select(best_vector, sum_zp, mask); 449 best_sum = select(best_su [all...] |
/third_party/python/Tools/scripts/ |
H A D | stable_abi.py | 68 def select(self, kinds, *, include_abi_only=True, ifdef=None): member in Manifest 207 item.name for item in manifest.select({'feature_macro'}) if item.windows 210 manifest.select( 220 manifest.select( 244 for item in manifest.select(REST_ROLES.keys(), include_abi_only=False): 306 items = manifest.select( 330 feature_macros = list(manifest.select({'feature_macro'})) 346 for macro in manifest.select({'feature_macro'}): 393 feature_macros = set(m.name for m in manifest.select({'feature_macro'})) 398 item.name for item in manifest.select({'macr [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/select/ |
H A D | select.c | 21 #include <sys/select.h> 48 result = select(2, &readfds, &writefds, 0, &timeout); in select_0100() 68 result = select(2, &readfds, &writefds, 0, &timeout); in select_0200() 89 result = select(2, &readfds, &writefds, 0, &timeout); in select_0300()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
H A D | DumbTextComponent.java | 126 select(e,false); in mousePressed() 130 select(e, true); in mousePressed() 137 select(e, false); in mouseDragged() 146 //if (pressed) select(e, false); in mouseEntered() 150 //if (pressed) select(e, false); in mouseExited() 170 public void select(MouseEvent e, boolean first) { in select() method in DumbTextComponent 182 select(tempSelection); in select() 224 select(Integer.MAX_VALUE, 0, false); in keyPressed() 230 select(tempSelection); in keyPressed() 236 select(tempSelectio in keyPressed() 406 public void select(Selection newSelection) { select() method in DumbTextComponent 420 public void select(int start, int end) { select() method in DumbTextComponent 424 public void select(int start, int end, boolean clickAfter) { select() method in DumbTextComponent [all...] |