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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
scanner.py 30 nextchar = string[idx]
34 if nextchar == '"':
36 elif nextchar == '{':
39 elif nextchar == '[':
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
58 elif nextchar == 'I' and string[idx:idx + 8] == 'Infinity':
60 elif nextchar == '-' and string[idx:idx + 9] == '-Infinity'
    [all...]
decoder.py 156 nextchar = s[end:end + 1]
157 # Normally we expect nextchar == '"'
158 if nextchar != '"':
159 if nextchar in _ws:
161 nextchar = s[end:end + 1]
163 if nextchar == '}':
171 elif nextchar != '"':
201 nextchar = s[end]
202 if nextchar in _ws:
204 nextchar = s[end
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
scanner.py 30 nextchar = string[idx]
34 if nextchar == '"':
36 elif nextchar == '{':
39 elif nextchar == '[':
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
58 elif nextchar == 'I' and string[idx:idx + 8] == 'Infinity':
60 elif nextchar == '-' and string[idx:idx + 9] == '-Infinity'
    [all...]
decoder.py 156 nextchar = s[end:end + 1]
157 # Normally we expect nextchar == '"'
158 if nextchar != '"':
159 if nextchar in _ws:
161 nextchar = s[end:end + 1]
163 if nextchar == '}':
171 elif nextchar != '"':
201 nextchar = s[end]
202 if nextchar in _ws:
204 nextchar = s[end
    [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/chromium_org/third_party/simplejson/
scanner.py 34 nextchar = string[idx]
38 if nextchar == '"':
40 elif nextchar == '{':
43 elif nextchar == '[':
45 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
47 elif nextchar == 't' and string[idx:idx + 4] == 'true':
49 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
60 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
62 elif nextchar == 'I' and string[idx:idx + 8] == 'Infinity':
64 elif nextchar == '-' and string[idx:idx + 9] == '-Infinity'
    [all...]
decoder.py 190 nextchar = s[end:end + 1]
191 # Normally we expect nextchar == '"'
192 if nextchar != '"':
193 if nextchar in _ws:
195 nextchar = s[end:end + 1]
197 if nextchar == '}':
205 elif nextchar != '"':
238 nextchar = s[end]
239 if nextchar in _ws:
241 nextchar = s[end
    [all...]

Completed in 333 milliseconds