Searched refs:modulename (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | trace.py | 141 def names(self, filename, modulename): argument 142 if modulename in self._ignore: 143 return self._ignore[modulename] 150 if mod == modulename: # Identical names, so ignore 151 self._ignore[modulename] = 1 159 if mod == modulename[:n] and modulename[n] == '.': 160 self._ignore[modulename] = 1 166 self._ignore[modulename] = 1 179 self._ignore[modulename] = 1 183 self._ignore[modulename] = 0 [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/ |
D | bgenObjectDefinition.py | 28 self.modulename = None 41 self.modulename = name 196 if self.modulename: 197 Output("\"%s.%s\", /*tp_name*/", self.modulename, self.name) 274 if self.modulename: 275 Output("\"%s.%s\", /*tp_name*/", self.modulename, self.name)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | errors.c | 583 PyObject *modulename = NULL; in PyErr_NewException() local 602 modulename = PyString_FromStringAndSize(name, in PyErr_NewException() 604 if (modulename == NULL) in PyErr_NewException() 606 if (PyDict_SetItemString(dict, "__module__", modulename) != 0) in PyErr_NewException() 625 Py_XDECREF(modulename); in PyErr_NewException()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | errors.c | 561 PyObject *modulename = NULL; in PyErr_NewException() local 580 modulename = PyString_FromStringAndSize(name, in PyErr_NewException() 582 if (modulename == NULL) in PyErr_NewException() 584 if (PyDict_SetItemString(dict, "__module__", modulename) != 0) in PyErr_NewException() 603 Py_XDECREF(modulename); in PyErr_NewException()
|