HomeSort by relevance Sort by last modified time
    Searched defs:_PyOS_optind (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getopt.c 38 int _PyOS_optind = 1; /* index into argv array */
49 if (_PyOS_optind >= argc)
52 else if (strcmp(argv[_PyOS_optind], "/?") == 0) {
53 ++_PyOS_optind;
58 else if (argv[_PyOS_optind][0] != '-' ||
59 argv[_PyOS_optind][1] == '\0' /* lone dash */ )
62 else if (strcmp(argv[_PyOS_optind], "--") == 0) {
63 ++_PyOS_optind;
67 else if (strcmp(argv[_PyOS_optind], "--help") == 0) {
68 ++_PyOS_optind;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getopt.c 38 int _PyOS_optind = 1; /* index into argv array */
45 _PyOS_optind = 1;
57 if (_PyOS_optind >= argc)
60 else if (strcmp(argv[_PyOS_optind], "/?") == 0) {
61 ++_PyOS_optind;
66 else if (argv[_PyOS_optind][0] != '-' ||
67 argv[_PyOS_optind][1] == '\0' /* lone dash */ )
70 else if (strcmp(argv[_PyOS_optind], "--") == 0) {
71 ++_PyOS_optind;
75 else if (strcmp(argv[_PyOS_optind], "--help") == 0) {
    [all...]
  /external/python/cpython2/Python/
getopt.c 38 int _PyOS_optind = 1; /* index into argv array */
45 _PyOS_optind = 1;
57 if (_PyOS_optind >= argc)
60 else if (strcmp(argv[_PyOS_optind], "/?") == 0) {
61 ++_PyOS_optind;
66 else if (argv[_PyOS_optind][0] != '-' ||
67 argv[_PyOS_optind][1] == '\0' /* lone dash */ )
70 else if (strcmp(argv[_PyOS_optind], "--") == 0) {
71 ++_PyOS_optind;
75 else if (strcmp(argv[_PyOS_optind], "--help") == 0)
    [all...]
  /external/python/cpython3/Python/
getopt.c 41 int _PyOS_optind = 1; /* index into argv array */
49 _PyOS_optind = 1;
62 if (_PyOS_optind >= argc)
65 else if (wcscmp(argv[_PyOS_optind], L"/?") == 0) {
66 ++_PyOS_optind;
71 else if (argv[_PyOS_optind][0] != L'-' ||
72 argv[_PyOS_optind][1] == L'\0' /* lone dash */ )
75 else if (wcscmp(argv[_PyOS_optind], L"--") == 0) {
76 ++_PyOS_optind;
80 else if (wcscmp(argv[_PyOS_optind], L"--help") == 0)
    [all...]

Completed in 685 milliseconds