Home
last modified time | relevance | path

Searched refs:longindex (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Python/
Dgetopt.c60 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()
Dpreconfig.c191 int longindex = -1; in precmdline_parse_cmdline() local
192 int c = _PyOS_GetOpt(argv->length, argv->items, &longindex); in precmdline_parse_cmdline()
Dinitconfig.c1979 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/
Dgetopt.c159 const struct option* longopts, int* longindex) { in getopt_long() argument
189 if (longindex) in getopt_long()
190 *longindex = (int) (match - longopts); in getopt_long()
Dgetopt.h51 const char* optstring, const struct option* longopts, int* longindex);
/third_party/python/Include/internal/
Dpycore_getopt.h20 extern int _PyOS_GetOpt(Py_ssize_t argc, wchar_t * const *argv, int *longindex);