Home
last modified time | relevance | path

Searched refs:PyString_AsDecodedObject (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dstringobject.h146 PyAPI_FUNC(PyObject*) PyString_AsDecodedObject(
/external/python/cpython2/Doc/data/
Drefcounts.dat1240 PyString_AsDecodedObject:PyObject*::+1:
1241 PyString_AsDecodedObject:PyObject*:str:0:
1242 PyString_AsDecodedObject:const char*:encoding::
1243 PyString_AsDecodedObject:const char*:errors::
/external/python/cpython2/PC/os2emx/
Dpython27.def553 "PyString_AsDecodedObject"
/external/python/cpython2/Doc/c-api/
Dstring.rst293 .. c:function:: PyObject* PyString_AsDecodedObject(PyObject *str, const char *encoding, const char …
/external/python/cpython2/Objects/
Dstringobject.c431 PyObject *PyString_AsDecodedObject(PyObject *str, in PyString_AsDecodedObject() function
468 v = PyString_AsDecodedObject(str, encoding, errors); in PyString_AsDecodedString()
3052 v = PyString_AsDecodedObject((PyObject *)self, encoding, errors); in string_decode()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2486 PyObject* decoded = PyString_AsDecodedObject(encoded.get(), "utf-8", NULL); in CheckAndGetInteger()