Searched defs:loader (Results 1 - 8 of 8) sorted by last modified time

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dimport.c1246 PyObject *loader; local
1248 loader = PyObject_CallMethod(hook, "find_module",
1252 if (loader == NULL) {
1256 if (loader != Py_None) {
1257 /* a loader was found */
1258 *p_loader = loader;
1262 Py_DECREF(loader);
1369 PyObject *loader; local
1370 loader = PyObject_CallMethod(importer,
1374 if (loader
1804 load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) argument
2571 PyObject *path, *loader = NULL; local
2621 PyObject *path = NULL, *loader = NULL, *existing_m = NULL; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A D_warnings.c643 PyObject *loader; local
661 /* Check/get the requisite pieces needed for the loader. */
662 loader = PyDict_GetItemString(module_globals, "__loader__");
665 if (loader == NULL || module_name == NULL)
668 /* Make sure the loader implements the optional get_source() method. */
669 if (!PyObject_HasAttrString(loader, "get_source"))
672 source = PyObject_CallMethodObjArgs(loader, get_source_name,
H A Dimport.c1343 PyObject *loader; local
1345 loader = PyObject_CallMethod(hook, "find_module",
1349 if (loader == NULL) {
1353 if (loader != Py_None) {
1354 /* a loader was found */
1355 *p_loader = loader;
1360 Py_DECREF(loader);
1471 PyObject *loader; local
1472 loader = PyObject_CallMethod(importer,
1476 if (loader
1889 load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) argument
2672 PyObject *path, *loader = NULL; local
2728 PyObject *path = NULL, *loader = NULL, *existing_m = NULL; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
H A D__init__.py19 loader = unittest.TestLoader() variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
H A Dmain.py7 from . import loader, runner namespace
73 testRunner=None, testLoader=loader.defaultTestLoader,
160 def _do_discovery(self, argv, Loader=loader.TestLoader):
210 loader = Loader()
211 self.test = loader.discover(start_dir, pattern, top_level_dir)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
H A D__init__.py7 loader = unittest.defaultTestLoader variable
16 suite.addTest(loader.loadTestsFromModule(module))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A D_warnings.c642 PyObject *loader; local
660 /* Check/get the requisite pieces needed for the loader. */
661 loader = PyDict_GetItemString(module_globals, "__loader__");
664 if (loader == NULL || module_name == NULL)
667 /* Make sure the loader implements the optional get_source() method. */
668 if (!PyObject_HasAttrString(loader, "get_source"))
671 source = PyObject_CallMethodObjArgs(loader, get_source_name,
H A Dimport.c1246 PyObject *loader; local
1248 loader = PyObject_CallMethod(hook, "find_module",
1252 if (loader == NULL) {
1256 if (loader != Py_None) {
1257 /* a loader was found */
1258 *p_loader = loader;
1262 Py_DECREF(loader);
1369 PyObject *loader; local
1370 loader = PyObject_CallMethod(importer,
1374 if (loader
1804 load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) argument
2571 PyObject *path, *loader = NULL; local
2621 PyObject *path = NULL, *loader = NULL, *existing_m = NULL; local
[all...]

Completed in 446 milliseconds