/external/python/cpython3/Lib/ |
D | pkgutil.py | 212 def find_module(self, fullname, path=None): argument 273 def __init__(self, fullname, file, filename, etc): argument 282 def load_module(self, fullname): argument 305 def _fix_name(self, fullname): argument 313 def is_package(self, fullname): argument 317 def get_code(self, fullname=None): argument 334 def get_source(self, fullname=None): argument 357 def get_filename(self, fullname=None): argument 429 def iter_importers(fullname=""): argument 482 def find_loader(fullname): argument
|
/external/python/cpython2/Lib/ |
D | pkgutil.py | 173 def find_module(self, fullname, path=None): argument 234 def __init__(self, fullname, file, filename, etc): argument 240 def load_module(self, fullname): argument 263 def _fix_name(self, fullname): argument 271 def is_package(self, fullname): argument 275 def get_code(self, fullname=None): argument 292 def get_source(self, fullname=None): argument 315 def get_filename(self, fullname=None): argument 398 def iter_importers(fullname=""): argument 464 def find_loader(fullname): argument
|
/external/python/cpython3/Modules/clinic/ |
D | zipimport.c.h | 71 PyObject *fullname; in zipimport_zipimporter_find_module() local 107 PyObject *fullname; in zipimport_zipimporter_find_loader() local 139 PyObject *fullname; in zipimport_zipimporter_load_module() local 167 PyObject *fullname; in zipimport_zipimporter_get_filename() local 196 PyObject *fullname; in zipimport_zipimporter_is_package() local 254 PyObject *fullname; in zipimport_zipimporter_get_code() local 284 PyObject *fullname; in zipimport_zipimporter_get_source() local 315 PyObject *fullname; in zipimport_zipimporter_get_resource_reader() local
|
/external/python/cpython3/Lib/importlib/ |
D | abc.py | 43 def find_module(self, fullname, path=None): argument 57 def find_module(self, fullname, path): argument 94 def find_loader(self, fullname): argument 153 def load_module(self, fullname): argument 208 def is_package(self, fullname): argument 216 def get_code(self, fullname): argument 230 def get_source(self, fullname): argument 262 def get_filename(self, fullname): argument 270 def get_code(self, fullname): argument
|
D | _bootstrap_external.py | 421 def _find_module_shim(self, fullname): argument 662 def _search_registry(cls, fullname): argument 677 def find_spec(cls, fullname, path=None, target=None): argument 693 def find_module(cls, fullname, path=None): argument 711 def is_package(self, fullname): argument 730 def load_module(self, fullname): argument 775 def get_source(self, fullname): argument 793 def get_code(self, fullname): argument 884 def __init__(self, fullname, path): argument 898 def load_module(self, fullname): argument [all …]
|
D | _bootstrap.py | 232 def _requires_builtin_wrapper(self, fullname): argument 243 def _requires_frozen_wrapper(self, fullname): argument 253 def _load_module_shim(self, fullname): argument 720 def find_spec(cls, fullname, path=None, target=None): argument 729 def find_module(cls, fullname, path=None): argument 755 def get_code(cls, fullname): argument 761 def get_source(cls, fullname): argument 767 def is_package(cls, fullname): argument 793 def find_spec(cls, fullname, path=None, target=None): argument 800 def find_module(cls, fullname, path=None): argument [all …]
|
/external/python/cpython3/Lib/test/test_importlib/import_/ |
D | test___loader__.py | 11 def find_spec(self, fullname, path=None, target=None): argument 37 def find_module(self, fullname, path=None): argument 40 def load_module(self, fullname): argument
|
D | test_api.py | 14 def find_spec(cls, fullname, path=None, target=None): argument 31 def find_module(cls, fullname, path): argument 36 def load_module(cls, fullname): argument
|
D | test_path.py | 120 def find_module(self, fullname): argument 138 def find_loader(self, fullname): argument 153 def find_spec(self, fullname, target=None): argument 245 def find_module(fullname): argument 263 def find_module(fullname): argument
|
/external/autotest/venv/lucifer/ |
D | autotest.py | 133 def find_module(self, fullname, path=None): argument 141 def _is_autotest_common(self, fullname): argument 145 def load_module(self, fullname): argument
|
/external/python/cpython2/Lib/test/ |
D | test_importhooks.py | 62 def find_module(self, fullname, path=None): argument 68 def load_module(self, fullname): argument 94 def find_module(self, fullname, path=None): argument 98 def load_module(self, fullname): argument 109 def find_module(self, fullname, path=None): argument 131 def load_module(self, fullname): argument
|
D | test_pkgutil.py | 95 def load_module(self, fullname): argument 110 def find_module(self, fullname, path=None): argument
|
D | test_importlib.py | 94 def find_module(self, fullname, path=None): argument 100 def load_module(self, fullname): argument
|
/external/python/setuptools/pkg_resources/extern/ |
D | __init__.py | 23 def find_module(self, fullname, path=None): argument 35 def load_module(self, fullname): argument
|
/external/python/setuptools/setuptools/extern/ |
D | __init__.py | 23 def find_module(self, fullname, path=None): argument 35 def load_module(self, fullname): argument
|
/external/python/cpython3/Lib/distutils/command/ |
D | bdist_wininst.py | 239 def create_exe(self, arcname, fullname, bitmap=None): argument 292 def get_installer_filename(self, fullname): argument
|
/external/python/cpython3/Modules/ |
D | zipimport.c | 235 get_subname(PyObject *fullname) in get_subname() 320 get_module_info(ZipImporter *self, PyObject *fullname) in get_module_info() 372 find_loader(ZipImporter *self, PyObject *fullname, PyObject **namespace_portion) in find_loader() 434 zipimport_zipimporter_find_module_impl(ZipImporter *self, PyObject *fullname, in zipimport_zipimporter_find_module_impl() 481 zipimport_zipimporter_find_loader_impl(ZipImporter *self, PyObject *fullname, in zipimport_zipimporter_find_loader_impl() 522 zipimport_zipimporter_load_module_impl(ZipImporter *self, PyObject *fullname) in zipimport_zipimporter_load_module_impl() 597 PyObject *fullname) in zipimport_zipimporter_get_filename_impl() 626 zipimport_zipimporter_is_package_impl(ZipImporter *self, PyObject *fullname) in zipimport_zipimporter_is_package_impl() 718 zipimport_zipimporter_get_code_impl(ZipImporter *self, PyObject *fullname) in zipimport_zipimporter_get_code_impl() 738 zipimport_zipimporter_get_source_impl(ZipImporter *self, PyObject *fullname) in zipimport_zipimporter_get_source_impl() [all …]
|
/external/python/cpython2/Lib/distutils/command/ |
D | bdist_wininst.py | 254 def create_exe (self, arcname, fullname, bitmap=None): argument 309 def get_installer_filename(self, fullname): argument
|
/external/libkmsxx/kms++/inc/kms++/ |
D | connector.h | 29 const std::string& fullname() const { return m_fullname; } in fullname() function
|
/external/python/cpython2/Modules/ |
D | zipimport.c | 211 get_subname(char *fullname) in get_subname() 258 get_module_info(ZipImporter *self, char *fullname) in get_module_info() 289 char *fullname; in zipimporter_find_module() local 313 char *fullname, *modpath; in zipimporter_load_module() local 378 char *fullname, *modpath; in zipimporter_get_filename() local 400 char *fullname; in zipimporter_is_package() local 463 char *fullname; in zipimporter_get_code() local 476 char *fullname, *subname, path[MAXPATHLEN+1]; in zipimporter_get_source() local 1231 get_module_code(ZipImporter *self, char *fullname, in get_module_code()
|
/external/dtc/ |
D | srcpos.c | 73 char *fullname; in try_open() local 102 char *fullname; in fopen_any_on_path() local 120 char *fullname; in srcfile_relative_open() local
|
/external/u-boot/scripts/dtc/ |
D | srcpos.c | 73 char *fullname; in try_open() local 102 char *fullname; in fopen_any_on_path() local 120 char *fullname; in srcfile_relative_open() local
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_abc.py | 150 def find_module(self, fullname, path): argument 176 def find_loader(self, fullname): argument 204 def load_module(self, fullname): argument 257 def is_package(self, fullname): argument 260 def get_source(self, fullname): argument 287 def get_filename(self, fullname): argument 354 def find_spec(self, fullname, path, target=None): argument 391 def find_spec(self, fullname, target=None): argument 440 def is_package(self, fullname): argument 694 def get_filename(self, fullname): argument
|
/external/skia/tools/bookmaker/ |
D | selfCheck.cpp | 92 string fullname = topic + '_' + subtopic; in checkMethod() local 125 string fullname = topicName + '_' + missing; in checkRelatedFunctions() local
|
/external/skqp/tools/bookmaker/ |
D | selfCheck.cpp | 92 string fullname = topic + '_' + subtopic; in checkMethod() local 125 string fullname = topicName + '_' + missing; in checkRelatedFunctions() local
|