Home | History | Annotate | Download | only in simplejson

Lines Matching full:nextchar

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]
243 nextchar = ''
246 if nextchar == '}':
248 elif nextchar != ',':
252 nextchar = s[end]
253 if nextchar in _ws:
255 nextchar = s[end]
256 if nextchar in _ws:
258 nextchar = s[end]
260 nextchar = ''
263 if nextchar != '"':
278 nextchar = s[end:end + 1]
279 if nextchar in _ws:
281 nextchar = s[end:end + 1]
283 if nextchar == ']':
292 nextchar = s[end:end + 1]
293 if nextchar in _ws:
295 nextchar = s[end:end + 1]
297 if nextchar == ']':
299 elif nextchar != ',':