Home
last modified time | relevance | path

Searched refs:JSONDecoder (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/json/
D__init__.py106 from .decoder import JSONDecoder, JSONDecodeError
241 _default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)
348 cls = JSONDecoder
Ddecoder.py254 class JSONDecoder(object): class
/third_party/python/Lib/test/test_json/
Dtest_decode.py61 decoder = self.json.decoder.JSONDecoder()
95 d = self.json.JSONDecoder()
Dtest_speedups.py27 self.json.decoder.JSONDecoder(strict=BadBool()).decode(value)
/third_party/mesa3d/src/compiler/spirv/
Dvtn_gather_types_c.py113 spirv_info = json.JSONDecoder().decode(open(args.json, "r").read())
Dspirv_info_c.py113 spirv_info = json.JSONDecoder().decode(open(pargs.json, "r").read())
/third_party/python/Doc/library/
Djson.rst266 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``
267 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments
302 .. class:: JSONDecoder(*, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, …
549 For simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and
/third_party/cef/tools/cefbuilds/
Dcef_json_builder.py242 new_data = json.JSONDecoder(object_hook=cef_from_json).decode(json_string)
/third_party/python/Misc/NEWS.d/
D3.6.0a3.rst144 and JSONEncoder and JSONDecoder class constructors in the json module are
D3.5.0a1.rst4032 Fix arbitrary memory access in JSONDecoder.raw_decode with a negative second
/third_party/python/Doc/whatsnew/
D3.6.rst2228 :class:`~json.JSONEncoder` and :class:`~json.JSONDecoder` class
D2.7.rst298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
/third_party/python/Misc/
DHISTORY1978 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido