Home
last modified time | relevance | path

Searched refs:scan_once (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/json/
Ddecoder.py148 def JSONObject(s_and_end, encoding, strict, scan_once, object_hook, argument
194 value, end = scan_once(s, end)
236 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR): argument
249 value, end = scan_once(s, end)
357 self.scan_once = scanner.make_scanner(self)
380 obj, end = self.scan_once(s, idx)
/external/python/cpython3/Lib/json/
Ddecoder.py136 def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook, argument
186 value, end = scan_once(s, end)
217 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR): argument
230 value, end = scan_once(s, end)
329 self.scan_once = scanner.make_scanner(self)
353 obj, end = self.scan_once(s, idx)
Dscanner.py65 def scan_once(string, idx): function
71 return scan_once