Home
last modified time | relevance | path

Searched refs:select (Results 51 - 75 of 916) sorted by relevance

12345678910>>...37

/third_party/node/deps/icu-small/source/i18n/
H A Dquantityformatter.cpp161 pluralKeyword = rules.select(dq); in selectPlural()
165 pluralKeyword = rules.select(number.getDouble()); in selectPlural()
167 pluralKeyword = rules.select(number.getLong()); in selectPlural()
169 pluralKeyword = rules.select((double) number.getInt64()); in selectPlural()
200 pluralKeyword = rules.select(fn.quantity); in formatAndSelect()
212 pluralKeyword = rules.select(quantity); in formatAndSelect()
/third_party/python/Lib/idlelib/
H A Dscrolledlist.py59 self.select(index)
65 self.select(index)
77 self.select(index)
95 self.select(index)
108 self.select(index)
112 def select(self, index): member in ScrolledList
137 def on_select(self, index): print("select", self.get(index))
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dquantityformatter.cpp161 pluralKeyword = rules.select(dq); in selectPlural()
165 pluralKeyword = rules.select(number.getDouble()); in selectPlural()
167 pluralKeyword = rules.select(number.getLong()); in selectPlural()
169 pluralKeyword = rules.select((double) number.getInt64()); in selectPlural()
200 pluralKeyword = rules.select(fn.quantity); in formatAndSelect()
212 pluralKeyword = rules.select(quantity); in formatAndSelect()
/third_party/jerryscript/jerry-debugger/
H A Djerry_client_serial.py17 import select namespace
53 result = select.select([self.ser.fileno()], [], [], 0)[0]
H A Djerry_client_tcp.py18 import select namespace
49 result = select.select([self.socket], [], [], 0)[0]
/third_party/node/test/fixtures/wpt/FileAPI/blob/
H A DBlob-constructor-dom.window.js36 var select = document.createElement("select");
37 select.appendChild(document.createElement("option"));
38 return new Blob(select);
42 desc: "Passing an platform object that supports indexed properties as the blobParts array should work (select)."
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_dpp.c293 enum dcn10_input_csc_select select; in dpp1_cnv_setup() local
304 select = INPUT_CSC_SELECT_BYPASS; in dpp1_cnv_setup()
350 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
356 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
362 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
368 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
400 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
402 select = INPUT_CSC_SELECT_BYPASS; in dpp1_cnv_setup()
404 dpp1_program_input_csc(dpp_base, color_space, select, &tbl_entry); in dpp1_cnv_setup()
406 dpp1_program_input_csc(dpp_base, color_space, select, NUL in dpp1_cnv_setup()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_dpp.c286 enum dcn10_input_csc_select select; in dpp1_cnv_setup() local
297 select = INPUT_CSC_SELECT_BYPASS; in dpp1_cnv_setup()
343 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
349 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
355 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
361 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
394 select = INPUT_CSC_SELECT_ICSC; in dpp1_cnv_setup()
396 select = INPUT_CSC_SELECT_BYPASS; in dpp1_cnv_setup()
398 dpp1_program_input_csc(dpp_base, color_space, select, &tbl_entry); in dpp1_cnv_setup()
400 dpp1_program_input_csc(dpp_base, color_space, select, NUL in dpp1_cnv_setup()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_valtable.cpp53 switch (v.select.sel()) { in operator <<()
69 o << "R" << v.select.sel() << "." in operator <<()
70 << chans[v.select.chan()]; in operator <<()
74 o << "C" << v.select.sel() << "." << chans[v.select.chan()]; in operator <<()
82 o << "Param" << (v.select.sel() - ALU_SRC_PARAM_OFFSET) in operator <<()
83 << chans[v.select.chan()]; in operator <<()
86 o << "t" << v.select.sel() - shader::temp_regid_offset; in operator <<()
90 o << "A" << v.select; in operator <<()
199 h |= select << 1 in rel_hash()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DReactor.cpp197 // NOTE: Only 12 bits out of 16 of the |select| value are used.
204 // This format makes it easy to write calls with hexadecimal select values,
212 static Value *createShuffle4(Value *lhs, Value *rhs, uint16_t select) in createShuffle4() argument
215 (select >> 12) & 0x07, in createShuffle4()
216 (select >> 8) & 0x07, in createShuffle4()
217 (select >> 4) & 0x07, in createShuffle4()
218 (select >> 0) & 0x07, in createShuffle4()
224 // NOTE: Only 8 bits out of 16 of the |select| value are used.
231 // This format makes it easy to write calls with hexadecimal select values,
238 static Value *createSwizzle4(Value *val, uint16_t select) in createSwizzle4() argument
250 createMask4(Value *lhs, Value *rhs, uint16_t select) createMask4() argument
[all...]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D17-10.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-11.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-12.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-13.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-14.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-15.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-1.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-16.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-17.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-18.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-20.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-22.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-21.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-23.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()
H A D17-2.c9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv) == -1 && in main()
55 perror("select"); in main()
68 child process being inside the 'select' function in main()
80 select(0, NULL, NULL, NULL, &tv); in main()

Completed in 9 milliseconds

12345678910>>...37