Searched refs:PyString_ConcatAndDel (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Objects/ |
D | sliceobject.c | 278 PyString_ConcatAndDel(&s, PyObject_Repr(r->start)); in slice_repr() 280 PyString_ConcatAndDel(&s, PyObject_Repr(r->stop)); in slice_repr() 282 PyString_ConcatAndDel(&s, PyObject_Repr(r->step)); in slice_repr() 283 PyString_ConcatAndDel(&s, PyString_FromString(")")); in slice_repr()
|
D | tupleobject.c | 303 PyString_ConcatAndDel(&s, temp); in tuplerepr() 312 PyString_ConcatAndDel(&temp, s); in tuplerepr()
|
D | dictobject.c | 1189 PyString_ConcatAndDel(&s, PyObject_Repr(value)); in dict_repr() 1205 PyString_ConcatAndDel(&s, temp); in dict_repr() 1214 PyString_ConcatAndDel(&temp, s); in dict_repr()
|
D | listobject.c | 401 PyString_ConcatAndDel(&s, temp); in list_repr() 410 PyString_ConcatAndDel(&temp, s); in list_repr()
|
D | exceptions.c | 176 PyString_ConcatAndDel(&repr, repr_suffix); in BaseException_repr()
|
D | stringobject.c | 3869 PyString_ConcatAndDel(register PyObject **pv, register PyObject *w) in PyString_ConcatAndDel() function
|
/external/python/cpython2/Include/ |
D | bytesobject.h | 19 #define PyBytes_ConcatAndDel PyString_ConcatAndDel
|
D | stringobject.h | 72 PyAPI_FUNC(void) PyString_ConcatAndDel(PyObject **, PyObject *);
|
/external/python/cpython2/Modules/_ctypes/ |
D | callproc.c | 976 PyString_ConcatAndDel(&s, cls_str); in _ctypes_extend_error() 977 PyString_ConcatAndDel(&s, PyString_FromString(": ")); in _ctypes_extend_error() 984 PyString_ConcatAndDel(&s, msg_str); in _ctypes_extend_error() 987 PyString_ConcatAndDel(&s, PyString_FromString("???")); in _ctypes_extend_error()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 363 PyString_ConcatAndDel
|
/external/python/cpython2/Modules/ |
D | datetimemodule.c | 1066 PyString_ConcatAndDel(&repr, PyString_FromString(", tzinfo=")); in append_keyword_tzinfo() 1069 PyString_ConcatAndDel(&repr, PyObject_Repr(tzinfo)); in append_keyword_tzinfo() 1072 PyString_ConcatAndDel(&repr, PyString_FromString(")")); in append_keyword_tzinfo() 3300 PyString_ConcatAndDel(&result, PyString_FromString(buf)); in time_isoformat() 4253 PyString_ConcatAndDel(&result, PyString_FromString(buffer)); in datetime_isoformat()
|
D | arraymodule.c | 1681 PyString_ConcatAndDel(&s, t); in array_repr() 1682 PyString_ConcatAndDel(&s, PyString_FromString(")")); in array_repr()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1265 PyString_ConcatAndDel:void::: 1266 PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL 1267 PyString_ConcatAndDel:PyObject*:newpart:-1:
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 545 "PyString_ConcatAndDel"
|
/external/python/cpython2/Doc/c-api/ |
D | string.rst | 219 .. c:function:: void PyString_ConcatAndDel(PyObject **string, PyObject *newpart)
|
/external/marisa-trie/bindings/python/ |
D | marisa-swig_wrap.cxx | 1488 PyString_ConcatAndDel(&repr,nrep); in SwigPyObject_repr() 5778 PyString_ConcatAndDel(&str,PyString_FromString(var->name)); in swig_varlink_str() 5779 if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); in swig_varlink_str() 5781 PyString_ConcatAndDel(&str,PyString_FromString(")")); in swig_varlink_str()
|
/external/python/cpython2/Python/ |
D | ast.c | 3568 PyString_ConcatAndDel(&v, s); in parsestrplus()
|