HomeSort by relevance Sort by last modified time
    Searched refs:PyBytesObject (Results 1 - 19 of 19) sorted by null

  /external/python/cpython3/Objects/clinic/
bytesobject.c.h 23 bytes_split_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit);
26 bytes_split(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
61 bytes_partition_impl(PyBytesObject *self, Py_buffer *sep);
64 bytes_partition(PyBytesObject *self, PyObject *arg)
100 bytes_rpartition_impl(PyBytesObject *self, Py_buffer *sep);
103 bytes_rpartition(PyBytesObject *self, PyObject *arg)
142 bytes_rsplit_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit);
145 bytes_rsplit(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
190 bytes_strip_impl(PyBytesObject *self, PyObject *bytes);
193 bytes_strip(PyBytesObject *self, PyObject *args
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /external/python/cpython2/Include/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /external/python/cpython3/Objects/stringlib/
stringdefs.h 11 #define STRINGLIB_OBJECT PyBytesObject
  /prebuilts/gdb/darwin-x86/include/python2.7/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /prebuilts/gdb/linux-x86/include/python2.7/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
bytesobject.h 1 #define PyBytesObject PyStringObject
  /external/python/cpython3/PC/clinic/
_testconsole.c.h 18 PyBytesObject *s);
27 PyBytesObject *s;
  /external/python/cpython3/Objects/
bytesobject.c 12 class bytes "PyBytesObject *" "&PyBytes_Type"
22 static PyBytesObject *characters[UCHAR_MAX + 1];
23 static PyBytesObject *nullstring;
28 Using PyBytesObject_SIZE instead of sizeof(PyBytesObject) saves
31 #define PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1)
62 PyBytesObject *op;
81 op = (PyBytesObject *)PyObject_Calloc(1, PyBytesObject_SIZE + size);
83 op = (PyBytesObject *)PyObject_Malloc(PyBytesObject_SIZE + size);
101 PyBytesObject *op;
117 op = (PyBytesObject *)_PyBytes_FromSize(size, 0)
    [all...]
bytearrayobject.c     [all...]
  /external/python/cpython3/Include/
bytesobject.h 13 Type PyBytesObject represents a character string. An extra zero byte is
41 } PyBytesObject;
88 (((PyBytesObject *)(op))->ob_sval))
92 /* _PyBytes_Join(sep, x) is like sep.join(x). sep must be PyBytesObject*,
  /external/python/cpython3/PC/
_testconsole.c 38 s: PyBytesObject
45 PyBytesObject *s)
  /external/python/cpython3/Python/
marshal.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 35 *value = Py_CHARMASK(((PyBytesObject*)arg)->ob_sval[0]);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 35 *value = Py_CHARMASK(((PyBytesObject*)arg)->ob_sval[0]);
    [all...]
  /external/python/cpython2/Objects/
bytearrayobject.c 35 *value = Py_CHARMASK(((PyBytesObject*)arg)->ob_sval[0]);
    [all...]
  /external/python/cpython3/Tools/gdb/
libpython.py 22 holding three PyObject* that turn out to be PyBytesObject* instances, we can
175 inferior process, or some subclass pointer e.g. (PyBytesObject*)
    [all...]

Completed in 748 milliseconds