Searched refs:iterencode (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/ |
D | __init__.py | 171 iterable = _default_encoder.iterencode(obj) 178 default=default, **kw).iterencode(obj)
|
D | encoder.py | 201 chunks = self.iterencode(o, _one_shot=True) 206 def iterencode(self, o, _one_shot=False): member in JSONEncoder
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/ |
D | __init__.py | 179 iterable = _default_encoder.iterencode(obj) 186 default=default, sort_keys=sort_keys, **kw).iterencode(obj)
|
D | encoder.py | 207 chunks = self.iterencode(o, _one_shot=True) 212 def iterencode(self, o, _one_shot=False): member in JSONEncoder
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_codecs.py | 1088 "".join(codecs.iterencode(u"python.org", "idna")), 1092 "".join(codecs.iterencode(u"python.org.", "idna")), 1096 "".join(codecs.iterencode(u"pyth\xf6n.org.", "idna")), 1100 "".join(codecs.iterencode(u"pyth\xf6n.org.", "idna")), 1410 result = u"".join(codecs.iterdecode(codecs.iterencode(s, encoding), encoding)) 1414 result = u"".join(codecs.iterdecode(codecs.iterencode(u"", encoding), encoding))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | codecs.py | 999 def iterencode(iterator, encoding, errors='strict', **kwargs): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | codecs.py | 996 def iterencode(iterator, encoding, errors='strict', **kwargs): function
|