OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextchar
(Results
1 - 12
of
12
) 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
...]
/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/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
...]
/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_
Completed in 1328 milliseconds