Searched refs:nextchar (Results 1 - 16 of 16) sorted by relevance

/external/python/cpython3/Lib/
H A Dshlex.py134 nextchar = self._pushback_chars.pop()
136 nextchar = self.instream.read(1)
137 if nextchar == '\n':
141 nextchar))
146 if not nextchar:
149 elif nextchar in self.whitespace:
156 elif nextchar in self.commenters:
159 elif self.posix and nextchar in self.escape:
161 self.state = nextchar
162 elif nextchar i
[all...]
/external/python/cpython2/Lib/json/
H A Dscanner.py30 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
[all...]
H A Ddecoder.py155 nextchar = s[end:end + 1]
156 # Normally we expect nextchar == '"'
157 if nextchar != '"':
158 if nextchar in _ws:
160 nextchar = s[end:end + 1]
162 if nextchar == '}':
170 elif nextchar != '"':
200 nextchar = s[end]
201 if nextchar in _ws:
203 nextchar
[all...]
/external/python/cpython3/Lib/json/
H A Dscanner.py30 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
[all...]
H A Ddecoder.py146 nextchar = s[end:end + 1]
147 # Normally we expect nextchar == '"'
148 if nextchar != '"':
149 if nextchar in _ws:
151 nextchar = s[end:end + 1]
153 if nextchar == '}':
161 elif nextchar != '"':
190 nextchar = s[end]
191 if nextchar in _ws:
193 nextchar
[all...]
/external/python/cpython2/Lib/
H A Dshlex.py124 nextchar = self.instream.read(1)
125 if nextchar == '\n':
129 "I see character:", repr(nextchar)
134 if not nextchar:
137 elif nextchar in self.whitespace:
144 elif nextchar in self.commenters:
147 elif self.posix and nextchar in self.escape:
149 self.state = nextchar
150 elif nextchar in self.wordchars:
151 self.token = nextchar
[all...]
/external/libusb/examples/getopt/
H A Dgetopt.c144 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...]
/external/syslinux/gpxe/src/include/
H A Dgetopt.h54 extern int nextchar;
91 nextchar = 0;
/external/syslinux/gpxe/src/core/
H A Dgetopt.c53 int nextchar; variable
177 nextchar++;
183 nextchar = 0;
188 nextchar = 0;
256 if ( nextchar < 1 )
257 nextchar = 1;
258 opttext = ( argv[optind] + nextchar );
H A Dexec.c42 int nextchar; variable
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 826 milliseconds