Home
last modified time | relevance | path

Searched refs:JSONDecoder (Results 1 – 11 of 11) 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.py62 decoder = self.json.decoder.JSONDecoder()
96 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.rst270 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``
271 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments
306 .. class:: JSONDecoder(*, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, …
553 For simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and
/third_party/python/Doc/whatsnew/
D3.6.rst2231 :class:`~json.JSONEncoder` and :class:`~json.JSONDecoder` class
D2.7.rst298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
/third_party/python/Misc/
DNEWS29723 loads() functions and JSONEncoder and JSONDecoder class constructors in
36370 - bpo-21529: Fix arbitrary memory access in JSONDecoder.raw_decode with a
DHISTORY1978 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido