Searched refs:JSONDecoder (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/json/ |
H A D | __init__.py | 101 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', 106 from .decoder import JSONDecoder, JSONDecodeError namespace 241 _default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None) 290 To use a custom ``JSONDecoder`` subclass, specify it with the ``cls`` 291 kwarg; otherwise ``JSONDecoder`` is used. 330 To use a custom ``JSONDecoder`` subclass, specify it with the ``cls`` 331 kwarg; otherwise ``JSONDecoder`` is used. 348 cls = JSONDecoder
|
H A D | decoder.py | 1 """Implementation of JSONDecoder 11 __all__ = ['JSONDecoder', 'JSONDecodeError'] 254 class JSONDecoder(object): class
|
/third_party/python/Lib/test/test_json/ |
H A D | test_decode.py | 62 decoder = self.json.decoder.JSONDecoder() 96 d = self.json.JSONDecoder()
|
H A D | test_speedups.py | 27 self.json.decoder.JSONDecoder(strict=BadBool()).decode(value)
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_gather_types_c.py | 113 spirv_info = json.JSONDecoder().decode(open(args.json, "r").read())
|
H A D | spirv_info_c.py | 113 spirv_info = json.JSONDecoder().decode(open(pargs.json, "r").read())
|
Completed in 3 milliseconds