HomeSort by: relevance | last modified time | path
    Searched refs:choices (Results 1 - 25 of 170) sorted by relevancy

1 2 3 4 5 6 7

  /src/lib/libform/
type_enum.c 53 char **choices; member in struct:__anon484
88 char **choices; local
94 new->choices = va_arg(*args, char **);
101 /* count the choices we have */
102 choices = new->choices;
104 while (*choices != NULL) {
106 new->num_choices, new->choices[new->num_choices]);
108 choices++;
110 _formi_dbg_printf("%s: have %u choices\n", __func__
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
params.py 72 Parameter(name='std', choices=_allStandards, type=str,
80 Parameter(name='enable_exceptions', choices=[True, False], type=bool, default=True,
87 Parameter(name='enable_rtti', choices=[True, False], type=bool, default=True,
94 Parameter(name='stdlib', choices=['libc++', 'libstdc++', 'msvc'], type=str, default='libc++',
100 Parameter(name='enable_warnings', choices=[True, False], type=bool, default=True,
106 Parameter(name='debug_level', choices=['', '0', '1'], type=str, default='',
113 Parameter(name='use_sanitizer', choices=['', 'Address', 'Undefined', 'Memory', 'MemoryWithOrigins', 'Thread', 'DataFlow', 'Leaks'], type=str, default='',
138 Parameter(name='enable_experimental', choices=[True, False], type=bool, default=False,
150 Parameter(name='long_tests', choices=[True, False], type=bool, default=True,
156 Parameter(name='enable_debug_tests', choices=[True, False], type=bool, default=True
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/
abtest.py 100 def check_sanity(choices, perform_test):
102 all_a = {name: a_b[0] for name, a_b in choices}
105 error("Picking all choices from A failed to pass the test")
109 all_b = {name: a_b[1] for name, a_b in choices}
112 error("Picking all choices from B did unexpectedly pass the test")
116 def check_sequentially(choices, perform_test):
118 all_a = {name: a_b[0] for name, a_b in choices}
120 for name, a_b in sorted(choices):
123 announce_test("checking %s [%d/%d]" % (name, n, len(choices)))
131 def check_bisect(choices, perform_test)
    [all...]
shuffle_fuzz.py 35 parser.add_argument('--fixed-bit-width', type=int, choices=[128, 256],
37 parser.add_argument('--fixed-element-type', choices=element_types,
  /src/external/gpl2/texinfo/dist/info/
variables.c 33 /* Choices used by the completer when reading a zero/non-zero value for
90 if (var->choices)
92 var->name, var->choices[*(var->value)], _(var->doc));
116 if (!var->choices)
153 for (i = 0; var->choices[i]; i++)
158 entry->label = xstrdup (var->choices[i]);
167 var->name, var->choices[*(var->value)]);
191 /* Find the choice in our list of choices. */
192 for (i = 0; var->choices[i]; i++)
193 if (strcmp (var->choices[i], line) == 0
    [all...]
variables.h 41 char **choices; /* Array of strings or NULL if numeric only. */ member in struct:__anon9540
  /src/external/gpl3/gcc/dist/contrib/
check_GNU_style.py 34 choices = ['stdio', 'quickfix'])
analyze_brprob_spec.py 33 choices = ['branches', 'branch-hitrate', 'hitrate', 'coverage', 'name'], variable
  /src/external/gpl3/gcc.old/dist/contrib/
check_GNU_style.py 32 choices = ['stdio', 'quickfix'])
analyze_brprob_spec.py 31 choices = ['branches', 'branch-hitrate', 'hitrate', 'coverage', 'name'], variable
  /src/external/bsd/tmux/dist/
options-table.c 333 .choices = options_table_cursor_style_list,
387 .choices = options_table_extended_keys_list,
396 .choices = options_table_extended_keys_format_list,
455 .choices = options_table_popup_border_lines_list,
493 .choices = options_table_set_clipboard_list,
544 .choices = options_table_bell_action_list,
572 .choices = options_table_bell_action_list,
603 .choices = options_table_destroy_unattached_list,
612 .choices = options_table_detach_on_destroy_list,
714 .choices = options_table_message_line_list
    [all...]
  /src/games/phantasia/
io.c 171 getanswer(const char *choices, phbool def)
233 if (def || strchr(choices, ch) != NULL)
240 YELL: mvprintw(oldy + 1, 0, "Please choose one of : [%s]\n", choices);
250 return (*choices);
  /src/external/apache2/llvm/dist/llvm/utils/gn/build/
symbol_exports.py 20 choices=('linux','mac','win'))
  /src/external/gpl3/gcc/dist/gcc/
lower-subreg.cc 104 #define choices \ macro
232 choices[speed_p].move_modes_to_split[i] = true;
233 choices[speed_p].something_to_do = true;
244 if (choices[speed_p].move_modes_to_split[(int) twice_word_mode])
259 choices[speed_p].splitting_zext = true;
262 choices[speed_p].splitting_ashift, ASHIFT,
265 choices[speed_p].splitting_lshiftrt, LSHIFTRT,
268 choices[speed_p].splitting_ashiftrt, ASHIFTRT,
398 if (!choices[speed_p].move_modes_to_split[(int) mode])
1289 || !choices[speed_p].splitting_zext
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
lower-subreg.cc 103 #define choices \ macro
231 choices[speed_p].move_modes_to_split[i] = true;
232 choices[speed_p].something_to_do = true;
243 if (choices[speed_p].move_modes_to_split[(int) twice_word_mode])
258 choices[speed_p].splitting_zext = true;
261 choices[speed_p].splitting_ashift, ASHIFT,
264 choices[speed_p].splitting_lshiftrt, LSHIFTRT,
267 choices[speed_p].splitting_ashiftrt, ASHIFTRT,
397 if (!choices[speed_p].move_modes_to_split[(int) mode])
1276 || !choices[speed_p].splitting_zext
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/release/
github-upload-release.py 59 parser.add_argument('command', type=str, choices=['create', 'upload'])
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
SATest.py 57 choices = [CmpRuns.HistogramType.RELATIVE.value,
61 if args.histogram is not None and args.histogram not in choices:
62 parser.error("Incorrect histogram type, available choices are {}"
63 .format(choices))
211 choices=[0, 1, 2],
216 choices=["script", "git", "zip"],
  /src/common/lib/libc/rpc/
xdr.c 692 const struct xdr_discrim *choices, /* [value, xdr proc] for each arm */
701 _DIAGASSERT(choices != NULL);
713 * search choices for a value that matches the discriminator.
716 for (; choices->proc != NULL_xdrproc_t; choices++) {
717 if (choices->value == dscm)
718 return ((*(choices->proc))(xdrs, unp));
  /src/external/gpl2/gettext/dist/gettext-runtime/intl-csharp/
intl.cs 441 String[] choices = (String[]) value;
443 return choices[index >= 0 && index < choices.Length ? index : 0];
  /src/external/gpl3/gcc.old/dist/gcc/config/riscv/
arch-canonicalize 162 choices=SUPPORTED_ISA_SPEC)
  /src/external/cddl/osnet/dist/lib/pyzfs/common/
userspace.py 172 type="choice", choices=fields, default=list(),
176 type="choice", choices=fields, #-s sets the default
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
arch-canonicalize 183 choices=SUPPORTED_ISA_SPEC)
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
comparison.d 179 private template indexOfFirstOvershadowingChoiceOnLast(choices...)
181 alias firstParameterTypes = Parameters!(choices[0]);
182 alias lastParameterTypes = Parameters!(choices[$ - 1]);
209 1 + indexOfFirstOvershadowingChoiceOnLast!(choices[1..$]);
222 all the choices are void. In that case, castSwitch itself will return void.
225 SwitchError) will also be thrown if not all the choices are void and a void
229 choices = The `choices` needs to be composed of function or delegate
240 auto castSwitch(choices...)(Object switchObject)
248 foreach (index, choice; choices)
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/
mingw.py 272 parser.add_argument('--arch', required = True, choices = ['i686', 'x86_64'],
276 parser.add_argument('--threading', choices = ['posix', 'win32'],
278 parser.add_argument('--exceptions', choices = ['sjlj', 'seh', 'dwarf'],
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/
mingw.py 272 parser.add_argument('--arch', required = True, choices = ['i686', 'x86_64'],
276 parser.add_argument('--threading', choices = ['posix', 'win32'],
278 parser.add_argument('--exceptions', choices = ['sjlj', 'seh', 'dwarf'],

Completed in 32 milliseconds

1 2 3 4 5 6 7