Home
last modified time | relevance | path

Searched refs:strobj (Results 1 – 3 of 3) sorted by relevance

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