Home | History | Annotate | Download | only in json

Lines Matching refs:nextchar

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]
206 nextchar = ''
209 if nextchar == '}':
211 elif nextchar != ',':
215 nextchar = s[end]
216 if nextchar in _ws:
218 nextchar = s[end]
219 if nextchar in _ws:
221 nextchar = s[end]
223 nextchar = ''
226 if nextchar != '"':
240 nextchar = s[end:end + 1]
241 if nextchar in _ws:
243 nextchar = s[end:end + 1]
245 if nextchar == ']':
254 nextchar = s[end:end + 1]
255 if nextchar in _ws:
257 nextchar = s[end:end + 1]
259 if nextchar == ']':
261 elif nextchar != ',':