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

  /external/syslinux/gpxe/src/core/
getopt.c 53 int nextchar; variable
177 nextchar++;
183 nextchar = 0;
188 nextchar = 0;
256 if ( nextchar < 1 )
257 nextchar = 1;
258 opttext = ( argv[optind] + nextchar );
exec.c 42 int nextchar; variable
  /external/libusb/examples/getopt/
getopt.c 144 static char *nextchar;
403 nextchar = NULL;
468 updating `optind' and `nextchar' so that the next call to `getopt' can
552 if (nextchar == NULL || *nextchar == '\0')
625 nextchar = (argv[optind] + 1
656 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
662 if (!strncmp (p->name, nextchar, nameend - nextchar))
664 if ((unsigned int) (nameend - nextchar)
143 static char *nextchar; variable
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
getopt.c 147 static char *nextchar;
414 nextchar = NULL;
479 updating `optind' and `nextchar' so that the next call to `getopt' can
552 if (nextchar == NULL || *nextchar == '\0')
625 nextchar = (argv[optind] + 1
656 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
662 if (!strncmp (p->name, nextchar, nameend - nextchar))
664 if ((unsigned int) (nameend - nextchar)
146 static char *nextchar; variable
    [all...]
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 185 char nextChar = getNextChar();
186 tok.tokenValue = String.valueOf(nextChar);
187 if (isAlpha(nextChar)) {
189 } else if (isDigit(nextChar)) {
192 tok.tokenType = (int) nextChar;
322 char nextChar = lookAhead(0);
323 return isTokenChar(nextChar);
331 char nextChar = lookAhead(0);
332 if (isAlphaDigit(nextChar)) {
336 switch (nextChar) {
727 char nextchar = lookAhead(0); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-mmix.c 462 int nextchar = ','; local
464 while (nextchar == ',')
504 nextchar = *p++;
508 if (nextchar != ',')
    [all...]

Completed in 533 milliseconds