Home
last modified time | relevance | path

Searched refs:option_map (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dgcc.c919 struct option_map struct
936 static const struct option_map option_map[] = argument
1110 for (j = 0; j < ARRAY_SIZE (option_map); j++)
1112 size_t optlen = strlen (option_map[j].name);
1115 const char *arginfo = option_map[j].arg_info;
1120 if (!strncmp (argv[i], option_map[j].name, complen))
1127 for (k = j + 1; k < ARRAY_SIZE (option_map); k++)
1128 if (strlen (option_map[k].name) >= arglen
1129 && !strncmp (argv[i], option_map[k].name, arglen))
1135 if (k != ARRAY_SIZE (option_map))
[all …]
H A DChangeLog.13520 option_map, translate_options, make_temp_file, temp_name,
8382 (option_map): Add --std.
8681 * gcc.c (option_map): Recognize --output-class-directory.
10810 * gcc.c (option_map): Added --classpath and --CLASSPATH.
H A DChangeLog.711666 (option_map): Map "--comments-in-macros" to "-CC".
15105 * gcc.c (option_map): Suport new --bootclasspath option.
20670 * gcc.c (option_map): Remove --version.
H A DChangeLog.23715 (struct option_map): Add entry for "--pass-exit-codes".
7787 (option_map): Add --time.
H A DFSFChangeLog.119060 (option_map): Add define-macro and undefine-macro.
9374 (option_map): Likewise.
H A DChangeLog6303 (option_map): Likewise.
11940 (option_map): Support --print-multi-os-directory.
H A DChangeLog.59907 (option_map): Likewise.
H A DChangeLog.69149 * gcc.c (dir_separator_str, modify_target, option_map,
/openbsd-src/gnu/gcc/gcc/
H A Dgcc.c1044 struct option_map struct
1061 static const struct option_map option_map[] = argument
1236 for (j = 0; j < ARRAY_SIZE (option_map); j++) in translate_options()
1238 size_t optlen = strlen (option_map[j].name); in translate_options()
1241 const char *arginfo = option_map[j].arg_info; in translate_options()
1246 if (!strncmp (argv[i], option_map[j].name, complen)) in translate_options()
1253 for (k = j + 1; k < ARRAY_SIZE (option_map); k++) in translate_options()
1254 if (strlen (option_map[k].name) >= arglen in translate_options()
1255 && !strncmp (argv[i], option_map[k].name, arglen)) in translate_options()
1261 if (k != ARRAY_SIZE (option_map)) in translate_options()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptions.h174 OptionElementVector &option_map,