Lines Matching defs:unicode
3889 Return a unicode string representing the current working directory.
8000 /* num_chars is the number of unicode chars plus null terminator */
11070 PyObject *unicode;
11072 unicode = PyUnicode_FromFormat("%U=%U", name, value);
11075 unicode = PyUnicode_FromFormat("%U=", name);
11077 if (unicode == NULL) {
11083 wchar_t *env = PyUnicode_AsWideCharString(unicode, &size);
11084 Py_DECREF(unicode);
11120 name: unicode
11121 value: unicode
11174 name: unicode
13912 PyObject *unicode;
13916 if (!PyUnicode_FSDecoder(self->path, &unicode))
13921 const wchar_t *path = PyUnicode_AsUnicode(unicode);
13923 Py_DECREF(unicode);
13926 wchar_t *path = PyUnicode_AsWideCharString(unicode, NULL);
13927 Py_DECREF(unicode);
16017 PyObject *unicode;
16019 unicode = PyUnicode_DecodeASCII(trace->label, strlen(trace->label), NULL);
16020 if (!unicode)
16022 if (PyList_Append(list, unicode))
16024 Py_DECREF(unicode);