HomeSort by relevance Sort by last modified time
    Searched refs:PyBytes_Check (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /external/python/cpython2/Include/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /external/python/cpython3/Objects/stringlib/
stringdefs.h 24 #define STRINGLIB_CHECK PyBytes_Check
  /prebuilts/gdb/darwin-x86/include/python2.7/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /prebuilts/gdb/linux-x86/include/python2.7/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
bytesobject.h 4 #define PyBytes_Check PyString_Check
  /external/python/cpython3/Include/
bytesobject.h 47 #define PyBytes_Check(op) \
87 #define PyBytes_AS_STRING(op) (assert(PyBytes_Check(op)), \
89 #define PyBytes_GET_SIZE(op) (assert(PyBytes_Check(op)),Py_SIZE(op))
  /external/tensorflow/tensorflow/python/util/
util.cc 52 return static_cast<int>(is_instance != 0 && !PyBytes_Check(o) &&
  /external/python/cpython3/Objects/
bytesobject.c 489 if (PyBytes_Check(arg) && PyBytes_GET_SIZE(arg) == 1) {
537 if (PyBytes_Check(v)) {
556 if (!PyBytes_Check(result)) {
612 !PyTuple_Check(args) && !PyBytes_Check(args) && !PyUnicode_Check(args) &&
1092 assert(PyBytes_Check(w));
    [all...]
fileobject.c 78 if (result != NULL && !PyBytes_Check(result) &&
87 if (n < 0 && result != NULL && PyBytes_Check(result)) {
  /external/python/cpython3/Modules/_io/
iobase.c 535 if (!PyBytes_Check(readahead)) {
575 if (!PyBytes_Check(b)) {
933 if (!PyBytes_Check(data)) {
  /external/libxml2/python/
libxml_wrap.h 31 #ifndef PyBytes_Check
32 #define PyBytes_Check PyString_Check
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
iobase.c 479 if (!PyBytes_Check(readahead)) {
519 if (!PyBytes_Check(b)) {
845 if (!PyBytes_Check(data)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
iobase.c 473 if (!PyBytes_Check(readahead)) {
507 if (!PyBytes_Check(b)) {
825 if (!PyBytes_Check(data)) {
fileio.c 239 if (PyBytes_Check(nameobj) || PyByteArray_Check(nameobj)) {
255 if (!PyBytes_Check(stringobj)) {
  /external/python/cpython2/Modules/_io/
iobase.c 481 if (!PyBytes_Check(readahead)) {
521 if (!PyBytes_Check(b)) {
850 if (!PyBytes_Check(data)) {
  /external/tensorflow/tensorflow/python/lib/core/
py_seq_tensor.cc 40 return PyBytes_Check(obj) || PyUnicode_Check(obj);
316 if (PyBytes_Check(v)) {
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyhead.swg 9 #define PyString_Check(name) PyBytes_Check(name)
  /external/python/cpython3/Python/
peephole.c 446 assert(PyBytes_Check(lnotab_obj));
457 assert(PyBytes_Check(code));
getargs.c 477 if (!PySequence_Check(arg) || PyBytes_Check(arg)) {
841 if (PyBytes_Check(arg) && PyBytes_Size(arg) == 1)
1074 (PyBytes_Check(arg) || PyByteArray_Check(arg))) {
    [all...]
  /external/python/cpython3/Modules/
_dbmmodule.c 247 else if (!PyBytes_Check(arg)) {
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 300 (!PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) && !PyBytes_Check(tobj)) ||
322 assert(PyBytes_Check(retstr));
    [all...]
  /external/python/cpython3/Modules/_ctypes/
cfield.c 1132 if (PyBytes_Check(value) && PyBytes_GET_SIZE(value) == 1) {
    [all...]

Completed in 484 milliseconds

1 2 3 4