Home
last modified time | relevance | path

Searched refs:choices (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/third_party/jerryscript/tools/
Dbuild.py77 buildgrp.add_argument('--lto', metavar='X', choices=['ON', 'OFF'], type=str.upper,
79 buildgrp.add_argument('--shared-libs', metavar='X', choices=['ON', 'OFF'], type=str.upper,
81 buildgrp.add_argument('--strip', metavar='X', choices=['ON', 'OFF'], type=str.upper,
89 compgrp.add_argument('--doctests', metavar='X', choices=['ON', 'OFF'], type=str.upper,
91 compgrp.add_argument('--jerry-cmdline', metavar='X', choices=['ON', 'OFF'], type=str.upper,
93 …compgrp.add_argument('--jerry-cmdline-snapshot', metavar='X', choices=['ON', 'OFF'], type=str.uppe…
95 compgrp.add_argument('--jerry-cmdline-test', metavar='X', choices=['ON', 'OFF'], type=str.upper,
97 compgrp.add_argument('--libfuzzer', metavar='X', choices=['ON', 'OFF'], type=str.upper,
99 compgrp.add_argument('--jerry-ext', metavar='X', choices=['ON', 'OFF'], type=str.upper,
101 compgrp.add_argument('--jerry-libm', metavar='X', choices=['ON', 'OFF'], type=str.upper,
[all …]
/third_party/libdrm/
Dmeson_options.txt25 choices : ['true', 'false', 'auto'],
32 choices : ['true', 'false', 'auto'],
39 choices : ['true', 'false', 'auto'],
46 choices : ['true', 'false', 'auto'],
53 choices : ['true', 'false', 'auto'],
60 choices : ['true', 'false', 'auto'],
67 choices : ['true', 'false', 'auto'],
74 choices : ['true', 'false', 'auto'],
81 choices : ['true', 'false', 'auto'],
88 choices : ['true', 'false', 'auto'],
[all …]
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionsAndEmptyObjects.ts61 type choices<IChoiceList extends { alias
74 var defaultChoices: choices<{}>;
75 var defaultChoicesAndEmpty: choices<{} & {}>;
77 var myChoices: choices<IMyChoiceList>;
78 var myChoicesAndEmpty: choices<IMyChoiceList & {}>;
80 var unknownChoices: choices<IUnknownChoiceList>;
81 var unknownChoicesAndEmpty: choices<IUnknownChoiceList & {}>;
/third_party/flutter/flutter/examples/catalog/lib/
Dbasic_app_bar.dart14 Choice _selectedChoice = choices[0]; // The app's "state".
30 icon: Icon(choices[0].icon),
31 onPressed: () { _select(choices[0]); },
34 icon: Icon(choices[1].icon),
35 onPressed: () { _select(choices[1]); },
40 return choices.skip(2).map<PopupMenuItem<Choice>>((Choice choice) {
65 const List<Choice> choices = <Choice>[
110 An app that displays one of a half dozen choices with an icon and a title.
111 The two most common choices are available as action buttons and the remaining
112 choices are included in the overflow dropdown menu.
Dtabbed_app_bar.dart12 length: choices.length,
18 tabs: choices.map<Widget>((Choice choice) {
27 children: choices.map<Widget>((Choice choice) {
46 const List<Choice> choices = <Choice>[
/third_party/python/Lib/test/
Dtest_random.py232 choices = self.gen.choices
240 choices(data, k=5),
241 choices(data, range(4), k=5),
242 choices(k=5, population=data, weights=range(4)),
243 choices(k=5, population=data, cum_weights=range(4)),
251 choices(2)
253 self.assertEqual(choices(data, k=0), []) # k == 0
254 …self.assertEqual(choices(data, k=-1), []) # negative k behaves like ``[0] *…
256 choices(data, k=2.5) # k is a float
258 … self.assertTrue(set(choices(str_data, k=5)) <= set(str_data)) # population is a string sequence
[all …]
/third_party/mesa3d/
Dmeson_options.txt25 choices : [
34 choices : [
51 choices : ['auto', 'true', 'false', 'disabled', 'enabled'],
75 choices : [
92 choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
105 choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
118 choices : ['auto', 'disabled', 'bellagio', 'tizonia'],
131 choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
144 choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
162 choices : ['icd', 'standalone', 'disabled'],
[all …]
/third_party/mesa3d/bin/
Dmeson-options.py44 choices = '[' + ', '.join(["'" + v + "'" for v in value.choices]) + ']' variable
48 "You can set it to any one of those values: " + choices)
50 choices = '[' + ', '.join(["'" + v + "'" for v in value.choices]) + ']' variable
55 "You can set it to one or more of those values: " + choices)
/third_party/typescript/tests/baselines/reference/
DintersectionsAndEmptyObjects.symbols192 type choices<IChoiceList extends {
193 >choices : Symbol(choices, Decl(intersectionsAndEmptyObjects.ts, 51, 19))
221 var defaultChoices: choices<{}>;
223 >choices : Symbol(choices, Decl(intersectionsAndEmptyObjects.ts, 51, 19))
225 var defaultChoicesAndEmpty: choices<{} & {}>;
227 >choices : Symbol(choices, Decl(intersectionsAndEmptyObjects.ts, 51, 19))
229 var myChoices: choices<IMyChoiceList>;
231 >choices : Symbol(choices, Decl(intersectionsAndEmptyObjects.ts, 51, 19))
234 var myChoicesAndEmpty: choices<IMyChoiceList & {}>;
236 >choices : Symbol(choices, Decl(intersectionsAndEmptyObjects.ts, 51, 19))
[all …]
DintersectionsAndEmptyObjects.js59 type choices<IChoiceList extends {
72 var defaultChoices: choices<{}>;
73 var defaultChoicesAndEmpty: choices<{} & {}>;
75 var myChoices: choices<IMyChoiceList>;
76 var myChoicesAndEmpty: choices<IMyChoiceList & {}>;
78 var unknownChoices: choices<IUnknownChoiceList>;
79 var unknownChoicesAndEmpty: choices<IUnknownChoiceList & {}>;
DintersectionsAndEmptyObjects.types164 type choices<IChoiceList extends {
165 >choices : choices<IChoiceList>
191 var defaultChoices: choices<{}>;
194 var defaultChoicesAndEmpty: choices<{} & {}>;
197 var myChoices: choices<IMyChoiceList>;
198 >myChoices : choices<IMyChoiceList>
200 var myChoicesAndEmpty: choices<IMyChoiceList & {}>;
201 >myChoicesAndEmpty : choices<IMyChoiceList>
203 var unknownChoices: choices<IUnknownChoiceList>;
206 var unknownChoicesAndEmpty: choices<IUnknownChoiceList & {}>;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp50 std::vector<uint32_t> choices; in Apply() local
57 choices.push_back(control); in Apply()
63 block.id(), choices[GetFuzzerContext()->RandomIndex(choices)]); in Apply()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp50 std::vector<uint32_t> choices; in Apply() local
57 choices.push_back(control); in Apply()
63 block.id(), choices[GetFuzzerContext()->RandomIndex(choices)]); in Apply()
/third_party/spirv-tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp49 std::vector<uint32_t> choices; in Apply() local
56 choices.push_back(control); in Apply()
62 block.id(), choices[GetFuzzerContext()->RandomIndex(choices)]); in Apply()
/third_party/cups-filters/filter/pdftopdf/
Dpdftopdf_jcl.cc12 ppd_choice_t **choices; in emitJCLOptions() local
48 int n = ppdCollect(ppd,(ppd_section_t)section,&choices); in emitJCLOptions()
51 ((ppd_option_t *)(choices[i]->option))->keyword); in emitJCLOptions()
52 if ((attr = ppdFindAttr(ppd,buf,choices[i]->choice)) != NULL) { in emitJCLOptions()
57 ((ppd_option_t *)(choices[i]->option))->keyword, in emitJCLOptions()
58 choices[i]->choice); in emitJCLOptions()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
DTransliteratorInputMethod.java74 private static JComboBox choices; field in TransliteratorInputMethod
150 choices = new JComboBox(types.toArray()); in initStatusWindow()
152 choices.setEditable(false); in initStatusWindow()
153 choices.setSelectedIndex(0); in initStatusWindow()
154 choices.setRenderer(new NameRenderer()); in initStatusWindow()
155 choices.setActionCommand("transliterator"); in initStatusWindow()
157 choices.addActionListener(new ActionListener() { in initStatusWindow()
165 sw.add(choices); in initStatusWindow()
260 choices.setSelectedIndex(selectedIndex == -1 ? choices in activate()
264 choices.setForeground(Color.BLACK); in activate()
[all …]
/third_party/skia/third_party/externals/brotli/python/
Dbro.py89 choices=[0, 1, 2],
98 choices=list(range(0, 12)),
106 choices=list(range(10, 25)),
113 choices=[0] + list(range(16, 25)),
/third_party/flutter/engine/flutter/tools/
Dgn273 …parser.add_argument('--runtime-mode', type=str, choices=['debug', 'profile', 'release'], default='…
281 parser.add_argument('--target-os', type=str, choices=['android', 'ios', 'linux', 'fuchsia'])
283 …parser.add_argument('--android-cpu', type=str, choices=['arm', 'x64', 'x86', 'arm64'], default='ar…
285 parser.add_argument('--ios-cpu', type=str, choices=['arm', 'arm64'], default='arm64')
288 parser.add_argument('--linux-cpu', type=str, choices=['x64', 'x86', 'arm64', 'arm'])
289 parser.add_argument('--fuchsia-cpu', type=str, choices=['x64', 'arm64'], default = 'x64')
290 parser.add_argument('--arm-float-abi', type=str, choices=['hard', 'soft', 'softfp'])
/third_party/flutter/flutter/examples/catalog/test/
Dapp_bar_bottom_test.dart9 final int choiceCount = app_bar_bottom_sample.choices.length;
10 IconData iconAt(int index) => app_bar_bottom_sample.choices[index].icon;
21 // Cycle through the choices using the forward and backwards arrows.
Dbasic_app_bar_test.dart9 int choiceCount = basic_app_bar_sample.choices.length;
10 IconData iconAt(int index) => basic_app_bar_sample.choices[index].icon;
11 String titleAt(int index) => basic_app_bar_sample.choices[index].title;
/third_party/mbedtls/tests/scripts/
Dgenerate_tls13_compat_tests.py382 parser.add_argument('server', choices=SERVER_CLASSES.keys(), nargs='?',
385 parser.add_argument('client', choices=CLIENT_CLASSES.keys(), nargs='?',
388 parser.add_argument('cipher', choices=CIPHER_SUITE_IANA_VALUE.keys(), nargs='?',
391 parser.add_argument('sig_alg', choices=SIG_ALG_IANA_VALUE.keys(), nargs='?',
394 parser.add_argument('named_group', choices=NAMED_GROUP_IANA_VALUE.keys(), nargs='?',
/third_party/PyYAML/tests/lib/
Dcanonical.py20 def check_token(self, *choices): argument
24 if not choices:
26 for choice in choices:
302 def check_event(self, *choices): argument
306 if not choices:
308 for choice in choices:
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetISO2022.java1741 byte[] choices = new byte[10]; in encodeLoop()
1822 choices[choiceCount++] = HWKANA_7BIT; in encodeLoop()
1828 choices[choiceCount++] = cs = myConverterData.fromU2022State.cs[0]; in encodeLoop()
1833 choices[choiceCount++] = cs; in encodeLoop()
1841 choices[choiceCount++] = cs; in encodeLoop()
1865 byte cs0 = choices[i]; in encodeLoop()
2248 byte[] choices = new byte[3]; in encodeLoop()
2342 choices[0] = myConverterData.fromU2022State.cs[1]; in encodeLoop()
2345 if (choices[0] == 0) { in encodeLoop()
2346 choices[0] = GB2312_1; in encodeLoop()
[all …]
/third_party/python/Lib/lib2to3/pgen2/
Dtokenize.py48 def group(*choices): return '(' + '|'.join(choices) + ')' argument
49 def any(*choices): return group(*choices) + '*' argument
50 def maybe(*choices): return group(*choices) + '?' argument
/third_party/vk-gl-cts/scripts/
Dlaunchcontrol_build.py81 choices=BUILD_CONFIGS.keys(),
87 choices=["Debug", "Release"],

12345678910>>...15