HomeSort by relevance Sort by last modified time
    Searched refs:object_hook (Results 1 - 25 of 29) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
scanner.py 25 object_hook = context.object_hook
38 _scan_once, object_hook, object_pairs_hook)
decoder.py 150 def JSONObject(s_and_end, encoding, strict, scan_once, object_hook,
169 if object_hook is not None:
170 pairs = object_hook(pairs)
234 if object_hook is not None:
235 pairs = object_hook(pairs)
304 def __init__(self, encoding=None, object_hook=None, parse_float=None,
314 ``object_hook``, if specified, will be called with the result
325 ``object_hook`` is also defined, the ``object_pairs_hook`` takes
350 self.object_hook = object_hook
    [all...]
__init__.py 69 ... object_hook=as_complex)
253 _default_decoder = JSONDecoder(encoding=None, object_hook=None,
257 def load(fp, encoding=None, cls=None, object_hook=None, parse_float=None,
269 ``object_hook`` is an optional function that will be called with the
271 ``object_hook`` will be used instead of the ``dict``. This feature
280 ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.
287 encoding=encoding, cls=cls, object_hook=object_hook,
293 def loads(s, encoding=None, cls=None, object_hook=None, parse_float=None,
303 ``object_hook`` is an optional function that will be called with the
    [all...]