/external/python/cpython3/Lib/ |
D | mimetypes.py | 206 self.readfp(fp, strict) 208 def readfp(self, fp, strict=True): member in MimeTypes 380 db.readfp(f, True)
|
D | configparser.py | 756 def readfp(self, fp, filename=None): member in RawConfigParser
|
/external/python/cpython2/Lib/ |
D | mimetypes.py | 203 self.readfp(fp, strict) 205 def readfp(self, fp, strict=True): member in MimeTypes 374 db.readfp(f, True)
|
D | ConfigParser.py | 310 def readfp(self, fp, filename=None): member in RawConfigParser
|
/external/autotest/client/bin/ |
D | test_config.py | 38 self.parser.readfp(self.cfg) 57 self.parser.readfp(self.cfg)
|
/external/autotest/server/cros/ |
D | ap_config_unittest.py | 42 parser.readfp(io.BytesIO(conf))
|
/external/u-boot/tools/buildman/ |
D | bsettings.py | 31 settings.readfp(io.StringIO(data))
|
/external/yapf/yapf/yapflib/ |
D | py3compat.py | 118 self.readfp(fp, filename=source)
|
/external/autotest/client/common_lib/cros/ |
D | avahi_utils.py | 44 conf.readfp(io.BytesIO(existing_config))
|
/external/python/cpython2/Doc/library/ |
D | mimetypes.rst | 182 :meth:`readfp` methods. The mapping dictionaries may also be cleared before 240 Load MIME information from a file named *filename*. This uses :meth:`readfp` to 247 .. method:: MimeTypes.readfp(fp, strict=True)
|
D | configparser.rst | 284 load the required file or files using :meth:`readfp` before calling :meth:`read` 290 config.readfp(open('defaults.cfg')) 297 .. method:: RawConfigParser.readfp(fp[, filename]) 546 >>> config.readfp(io.BytesIO(sample_config))
|
/external/python/cpython2/Lib/test/ |
D | test_mimetypes.py | 39 self.db.readfp(sio)
|
D | test_cfgparser.py | 46 cf.readfp(sio) 183 self.assertRaises(exc, self.cf.readfp, sio) 444 cf_from_file.readfp(f)
|
/external/python/cpython3/Doc/library/ |
D | mimetypes.rst | 191 :meth:`readfp` methods. The mapping dictionaries may also be cleared before 249 Load MIME information from a file named *filename*. This uses :meth:`readfp` to 256 .. method:: MimeTypes.readfp(fp, strict=True)
|
D | configparser.rst | 1027 Replaces :meth:`readfp`. 1166 .. method:: readfp(fp, filename=None) 1172 :meth:`readfp` now iterates on *fp* instead of calling ``fp.readline()``. 1174 For existing code calling :meth:`readfp` with arguments which don't 1184 Instead of ``parser.readfp(fp)`` use
|
/external/autotest/frontend/afe/ |
D | moblab_rpc_interface_unittest.py | 303 shadow_config.readfp(StringIO.StringIO(shadow_config_str)) 348 shadow_config.readfp(StringIO.StringIO(shadow_config_str))
|
/external/python/cpython3/Lib/test/ |
D | test_mimetypes.py | 40 self.db.readfp(sio)
|
D | test_configparser.py | 1640 parser.readfp(sio, filename='StringIO')
|
/external/clang/utils/check_cfc/ |
D | check_cfc.py | 322 config.readfp(io.BytesIO(default_config))
|
/external/python/cpython3/Lib/importlib/ |
D | metadata.py | 102 config.readfp(io.StringIO(text))
|
/external/python/cpython2/Lib/logging/ |
D | config.py | 73 cp.readfp(fname)
|
/external/python/setuptools/setuptools/command/ |
D | easy_install.py | 1523 cfg.readfp(six.StringIO(config))
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.7.rst | 1147 >>> config.readfp(StringIO.StringIO(sample_config))
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1132 >>> config.readfp(StringIO.StringIO(sample_config))
|