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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getopt.c 43 static char *opt_ptr = ""; local
47 if (*opt_ptr == '\0') {
78 opt_ptr = &argv[_PyOS_optind++][1];
81 if ( (option = *opt_ptr++) == '\0')
103 if (*opt_ptr != '\0') {
104 _PyOS_optarg = opt_ptr;
105 opt_ptr = "";
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getopt.c 40 static char *opt_ptr = ""; variable
47 opt_ptr = "";
55 if (*opt_ptr == '\0') {
86 opt_ptr = &argv[_PyOS_optind++][1];
89 if ((option = *opt_ptr++) == '\0')
113 if (*opt_ptr != '\0') {
114 _PyOS_optarg = opt_ptr;
115 opt_ptr = "";
  /external/python/cpython2/Python/
getopt.c 40 static char *opt_ptr = ""; variable
47 opt_ptr = "";
55 if (*opt_ptr == '\0') {
86 opt_ptr = &argv[_PyOS_optind++][1];
89 if ((option = *opt_ptr++) == '\0')
113 if (*opt_ptr != '\0') {
114 _PyOS_optarg = opt_ptr;
115 opt_ptr = "";
  /external/python/cpython3/Python/
getopt.c 44 static wchar_t *opt_ptr = L""; variable
51 opt_ptr = L"";
59 if (*opt_ptr == '\0') {
90 opt_ptr = &argv[_PyOS_optind++][1];
93 if ((option = *opt_ptr++) == L'\0')
109 if (*opt_ptr != L'\0') {
110 _PyOS_optarg = opt_ptr;
111 opt_ptr = L"";

Completed in 228 milliseconds