HomeSort by relevance Sort by last modified time
    Searched refs:skipkeys (Results 1 - 7 of 7) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
encoder.py 101 def __init__(self, skipkeys=False, ensure_ascii=True,
106 If skipkeys is false, then it is a TypeError to attempt
108 skipkeys is True, such items are simply skipped.
153 self.skipkeys = skipkeys
264 self.skipkeys, self.allow_nan)
269 self.skipkeys, _one_shot)
__init__.py 112 skipkeys=False, variable
122 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
128 If ``skipkeys`` is true then ``dict`` keys that are not basic types
175 if (not skipkeys and ensure_ascii and
183 iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
193 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
198 If ``skipkeys`` is false then ``dict`` keys that are not basic types
239 if (not skipkeys and ensure_ascii and
247 skipkeys=skipkeys, ensure_ascii=ensure_ascii
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
encoder.py 101 def __init__(self, skipkeys=False, ensure_ascii=True,
106 If skipkeys is false, then it is a TypeError to attempt
108 skipkeys is True, such items are simply skipped.
153 self.skipkeys = skipkeys
264 self.skipkeys, self.allow_nan)
269 self.skipkeys, _one_shot)
__init__.py 112 skipkeys=False, variable
122 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
128 If ``skipkeys`` is true then ``dict`` keys that are not basic types
175 if (not skipkeys and ensure_ascii and
183 iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
193 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
198 If ``skipkeys`` is false then ``dict`` keys that are not basic types
239 if (not skipkeys and ensure_ascii and
247 skipkeys=skipkeys, ensure_ascii=ensure_ascii
    [all...]
  /external/chromium_org/third_party/simplejson/
encoder.py 106 def __init__(self, skipkeys=False, ensure_ascii=True,
114 If skipkeys is false, then it is a TypeError to attempt
116 skipkeys is True, such items are simply skipped.
174 self.skipkeys = skipkeys
298 self.skipkeys, self.allow_nan, key_memo, self.use_decimal,
306 self.skipkeys, _one_shot, self.use_decimal,
_speedups.c 83 PyObject *skipkeys; member in struct:_PyEncoderObject
103 {"skipkeys", T_OBJECT, offsetof(PyEncoderObject, skipkeys), READONLY, "skipkeys"},
2074 PyObject *item_separator, *sort_keys, *skipkeys, *allow_nan, *key_memo; local
2332 int skipkeys; local
    [all...]
__init__.py 130 skipkeys=False,
145 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
154 If ``skipkeys`` is true then ``dict`` keys that are not basic types
219 if (not skipkeys and ensure_ascii and
229 iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
245 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
253 If ``skipkeys`` is false then ``dict`` keys that are not basic types
314 if (not skipkeys and ensure_ascii and
325 skipkeys=skipkeys, ensure_ascii=ensure_ascii
    [all...]

Completed in 573 milliseconds