Lines Matching defs:utf8
612 PyObject *utf8;
616 utf8 = PyUnicode_AsUTF8String(buf);
618 return utf8;
675 PyObject* utf8 = NULL;
690 utf8 = translate_into_utf8(str, tok->enc);
691 if (utf8 == NULL)
693 str = PyBytes_AsString(utf8);
718 assert(utf8 == NULL);
719 utf8 = translate_into_utf8(str, tok->enc);
720 if (utf8 == NULL)
722 str = PyBytes_AS_STRING(utf8);
725 tok->decoding_buffer = utf8; /* CAUTION */