Home
last modified time | relevance | path

Searched refs:modpath (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest___all__.py50 def walk_modules(self, basedir, modpath): argument
56 yield pkg_init, modpath + fn
57 for p, m in self.walk_modules(path, modpath + fn + "."):
62 yield path, modpath + fn[:-3]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzipimport.c313 char *fullname, *modpath; in zipimporter_load_module() local
320 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_load_module()
360 mod = PyImport_ExecCodeModuleEx(fullname, code, modpath); in zipimporter_load_module()
364 fullname, modpath); in zipimporter_load_module()
378 char *fullname, *modpath; in zipimporter_get_filename() local
387 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_get_filename()
392 return PyString_FromString(modpath); in zipimporter_get_filename()
1086 char *modpath; in get_code_from_data() local
1096 modpath = PyString_AsString(PyTuple_GetItem(toc_entry, 0)); in get_code_from_data()
1099 code = unmarshal_code(modpath, data, mtime); in get_code_from_data()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzipimport.c313 char *fullname, *modpath; in zipimporter_load_module() local
320 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_load_module()
360 mod = PyImport_ExecCodeModuleEx(fullname, code, modpath); in zipimporter_load_module()
364 fullname, modpath); in zipimporter_load_module()
378 char *fullname, *modpath; in zipimporter_get_filename() local
387 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_get_filename()
392 return PyString_FromString(modpath); in zipimporter_get_filename()
1114 char *modpath; in get_code_from_data() local
1124 modpath = PyString_AsString(PyTuple_GetItem(toc_entry, 0)); in get_code_from_data()
1127 code = unmarshal_code(modpath, data, mtime); in get_code_from_data()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dsetuptools_build_ext.py58 modpath = fullname.split('.')
59 package = '.'.join(modpath[:-1])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbuild_ext.py636 modpath = fullname.split('.')
644 filename = os.path.join(*modpath[:-1]+[filename])
649 package = '.'.join(modpath[0:-1])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dimport.c2218 PyObject *pkgname, *modname, *modpath, *modules, *parent; in find_module() local
2273 modpath = PyDict_GetItem(globals, pathstr); in find_module()
2274 if (modpath != NULL) { in find_module()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
Dimport.c2218 PyObject *pkgname, *modname, *modpath, *modules, *parent; in find_module() local
2273 modpath = PyDict_GetItem(globals, pathstr); in find_module()
2274 if (modpath != NULL) { in find_module()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dimport.c2319 PyObject *pkgname, *modname, *modpath, *modules, *parent; in get_parent() local
2374 modpath = PyDict_GetItem(globals, pathstr); in get_parent()
2375 if (modpath != NULL) { in get_parent()