Searched defs:codeset (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_localemodule.c637 "bind_textdomain_codeset(domain, codeset) -> string\n"
638 "Bind the C library's domain to codeset.");
643 char *domain,*codeset; local
644 if (!PyArg_ParseTuple(args, "sz", &domain, &codeset))
646 codeset = bind_textdomain_codeset(domain, codeset);
647 if (codeset)
648 return PyString_FromString(codeset);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_localemodule.c637 "bind_textdomain_codeset(domain, codeset) -> string\n"
638 "Bind the C library's domain to codeset.");
643 char *domain,*codeset; local
644 if (!PyArg_ParseTuple(args, "sz", &domain, &codeset))
646 codeset = bind_textdomain_codeset(domain, codeset);
647 if (codeset)
648 return PyString_FromString(codeset);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dpythonrun.c147 char *icodeset = NULL; /* On Windows, input codeset may theoretically
148 differ from output codeset. */
149 char *codeset = NULL; local
273 p = icodeset = codeset = strdup(p);
314 codeset = icodeset = loc_codeset;
331 codeset = buf;
337 if (codeset) {
346 Py_FatalError("Cannot set codeset of stdin");
357 if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
358 Py_FatalError("Cannot set codeset o
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dpythonrun.c141 char *icodeset = NULL; /* On Windows, input codeset may theoretically
142 differ from output codeset. */
143 char *codeset = NULL; local
261 p = icodeset = codeset = strdup(p);
302 codeset = icodeset = loc_codeset;
319 codeset = buf;
325 if (codeset) {
334 Py_FatalError("Cannot set codeset of stdin");
345 if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
346 Py_FatalError("Cannot set codeset o
[all...]

Completed in 63 milliseconds