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

  /external/grub/lib/
getopt.c 146 static char *nextchar;
407 nextchar = NULL;
472 updating `optind' and `nextchar' so that the next call to `getopt' can
549 if (nextchar == NULL || *nextchar == '\0')
622 nextchar = (argv[optind] + 1
653 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
659 if (!strncmp (p->name, nextchar, nameend - nextchar))
661 if ((unsigned int) (nameend - nextchar)
145 static char *nextchar; variable
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 140 static char *nextchar; variable
394 nextchar = NULL;
459 updating `optind' and `nextchar' so that the next call to `getopt' can
531 if (nextchar == NULL || *nextchar == '\0')
604 nextchar = (argv[optind] + 1
635 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
641 if (!strncmp (p->name, nextchar, nameend - nextchar))
643 if ((unsigned int) (nameend - nextchar)
    [all...]
  /external/marisa-trie/tools/
cmdopt.c 20 h->nextchar = NULL;
27 h->nextchar = NULL;
50 if (*h->nextchar == '\0') {
52 h->nextchar = h->argv[h->optind];
57 h->optarg = h->nextchar;
69 h->optopt = *h->nextchar++;
130 len = cmdopt_match_len(h->longopts[i].name, h->nextchar);
133 h->nextchar -= len;
146 h->nextchar += max;
152 if (*h->nextchar == '=')
    [all...]
cmdopt.h 38 char *nextchar; // Next character. member in struct:cmdopt_t_
  /external/marisa-trie/v0_1_5/tools/
cmdopt.c 20 h->nextchar = NULL;
27 h->nextchar = NULL;
50 if (*h->nextchar == '\0') {
52 h->nextchar = h->argv[h->optind];
57 h->optarg = h->nextchar;
69 h->optopt = *h->nextchar++;
130 len = cmdopt_match_len(h->longopts[i].name, h->nextchar);
133 h->nextchar -= len;
146 h->nextchar += max;
152 if (*h->nextchar == '=')
    [all...]
cmdopt.h 38 char *nextchar; // Next character. member in struct:cmdopt_t_
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
decoder.py 122 nextchar = s[end:end + 1]
124 if nextchar == '}':
126 if nextchar != '"':
143 nextchar = s[end:end + 1]
145 if nextchar == '}':
147 if nextchar != ',':
150 nextchar = s[end:end + 1]
152 if nextchar != '"':
165 nextchar = s[end:end + 1]
166 if nextchar == ']'
    [all...]

Completed in 1797 milliseconds