Searched defs:strobj (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Modules/cjkcodecs/
H A Dmultibytecodec.c1576 mbstreamwriter_write(MultibyteStreamWriterObject *self, PyObject *strobj) argument
1578 if (mbstreamwriter_iwrite(self, strobj))
1587 PyObject *strobj; local
1598 strobj = PySequence_GetItem(lines, i);
1599 if (strobj == NULL)
1602 r = mbstreamwriter_iwrite(self, strobj);
1603 Py_DECREF(strobj);
/external/python/cpython2/Python/
H A Dbltinmodule.c2831 filterstring(PyObject *func, PyObject *strobj) argument
2835 Py_ssize_t len = PyString_Size(strobj);
2843 if (PyString_CheckExact(strobj)) {
2844 Py_INCREF(strobj);
2845 return strobj;
2855 item = (*strobj->ob_type->tp_as_sequence->sq_item)(strobj, i);
2960 filterunicode(PyObject *func, PyObject *strobj) argument
2964 Py_ssize_t len = PyUnicode_GetSize(strobj);
2972 if (PyUnicode_CheckExact(strobj)) {
[all...]
/external/python/cpython2/Objects/
H A Dlongobject.c1720 PyObject *strobj, *strrepr; local
1982 strobj = PyString_FromStringAndSize(orig_str, slen);
1983 if (strobj == NULL)
1985 strrepr = PyObject_Repr(strobj);
1986 Py_DECREF(strobj);

Completed in 282 milliseconds