nextchar 119 libglibc/getopt.c static char *nextchar; nextchar 300 libglibc/getopt.c nextchar = NULL; nextchar 397 libglibc/getopt.c if (nextchar == NULL || *nextchar == '\0') nextchar 464 libglibc/getopt.c nextchar = (argv[optind] + 1 nextchar 495 libglibc/getopt.c for (nameend = nextchar; *nameend && *nameend != '='; nameend++) nextchar 501 libglibc/getopt.c if (!strncmp (p->name, nextchar, nameend - nextchar)) nextchar 503 libglibc/getopt.c if (nameend - nextchar == strlen (p->name)) nextchar 527 libglibc/getopt.c nextchar += strlen (nextchar); nextchar 556 libglibc/getopt.c nextchar += strlen (nextchar); nextchar 570 libglibc/getopt.c nextchar += strlen (nextchar); nextchar 574 libglibc/getopt.c nextchar += strlen (nextchar); nextchar 590 libglibc/getopt.c || my_index (optstring, *nextchar) == NULL) nextchar 597 libglibc/getopt.c argv[0], nextchar); nextchar 601 libglibc/getopt.c argv[0], argv[optind][0], nextchar); nextchar 603 libglibc/getopt.c nextchar = (char *) ""; nextchar 612 libglibc/getopt.c char c = *nextchar++; nextchar 616 libglibc/getopt.c if (*nextchar == '\0') nextchar 639 libglibc/getopt.c if (*nextchar != '\0') nextchar 641 libglibc/getopt.c optarg = nextchar; nextchar 646 libglibc/getopt.c nextchar = NULL; nextchar 651 libglibc/getopt.c if (*nextchar != '\0') nextchar 653 libglibc/getopt.c optarg = nextchar; nextchar 677 libglibc/getopt.c nextchar = NULL; nextchar 124 libutil/token.c while ((c = nextchar()) != EOF && isspace(c)) nextchar 127 libutil/token.c while ((c = nextchar()) != EOF && isspace(c) && c != '\n') nextchar 135 libutil/token.c while ((c = nextchar()) != EOF) { nextchar 140 libutil/token.c if (c == '\\' && (c = nextchar()) == EOF) nextchar 144 libutil/token.c if ((c = nextchar()) == '/') { nextchar 145 libutil/token.c while ((c = nextchar()) != EOF) nextchar 151 libutil/token.c while ((c = nextchar()) != EOF) { nextchar 153 libutil/token.c if ((c = nextchar()) == '/') nextchar 161 libutil/token.c if (nextchar() == '\n') nextchar 164 libutil/token.c while ((c = nextchar()) != EOF && (c == '.' || isalnum(c))) nextchar 172 libutil/token.c *p++ = nextchar(); nextchar 184 libutil/token.c *p++ = nextchar(); nextchar 195 libutil/token.c *p++ = nextchar(); nextchar 218 libutil/token.c for (*p++ = c; (c = nextchar()) != EOF && (c & 0x80 || isalnum(c) || c == '_'); *p++ = c) nextchar 263 libutil/token.c c = nextchar(); nextchar 265 libutil/token.c while ((c = nextchar()) != EOF && c != '\n' && isspace(c))