Searched refs:longindex (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Python/ |
D | getopt.c | 60 int _PyOS_GetOpt(Py_ssize_t argc, wchar_t * const *argv, int *longindex) in _PyOS_GetOpt() argument 109 *longindex = 0; in _PyOS_GetOpt() 111 for (opt = &longopts[*longindex]; opt->name; opt = &longopts[++(*longindex)]) { in _PyOS_GetOpt()
|
D | preconfig.c | 191 int longindex = -1; in precmdline_parse_cmdline() local 192 int c = _PyOS_GetOpt(argv->length, argv->items, &longindex); in precmdline_parse_cmdline()
|
D | initconfig.c | 1979 int longindex = -1; in config_parse_cmdline() local 1980 int c = _PyOS_GetOpt(argv->length, argv->items, &longindex); in config_parse_cmdline() 2019 assert(longindex == 0); // Only one long option now. in config_parse_cmdline()
|
/third_party/flutter/glfw/deps/ |
D | getopt.c | 159 const struct option* longopts, int* longindex) { in getopt_long() argument 189 if (longindex) in getopt_long() 190 *longindex = (int) (match - longopts); in getopt_long()
|
D | getopt.h | 51 const char* optstring, const struct option* longopts, int* longindex);
|
/third_party/python/Include/internal/ |
D | pycore_getopt.h | 20 extern int _PyOS_GetOpt(Py_ssize_t argc, wchar_t * const *argv, int *longindex);
|