Searched defs:tp_name (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Doc/includes/
H A Dtypestruct.h3 char *tp_name; /* For printing, in format "<module>.<name>" */ member in struct:_typeobject
/external/python/cpython3/Doc/includes/
H A Dtypestruct.h3 const char *tp_name; /* For printing, in format "<module>.<name>" */ member in struct:_typeobject
/external/tensorflow/tensorflow/python/lib/core/
H A Dpy_seq_tensor.cc78 const char* tp_name = obj->ob_type->tp_name; local
79 if (strcmp(tp_name, "Dimension") != 0) return false;
/external/python/cpython2/Include/
H A Dobject.h326 const char *tp_name; /* For printing, in format "<module>.<name>" */ member in struct:_typeobject
/external/python/cpython3/Include/
H A Dobject.h348 const char *tp_name; /* For printing, in format "<module>.<name>" */ member in struct:_typeobject
/external/python/cpython3/Objects/
H A Dtypeobject.c358 "can't set %s.%s", type->tp_name, name);
363 "can't delete %s.%s", type->tp_name, name);
381 s = strrchr(type->tp_name, '.');
383 s = type->tp_name;
406 const char *tp_name; local
414 type->tp_name, Py_TYPE(value)->tp_name);
418 tp_name = PyUnicode_AsUTF8AndSize(value, &name_size);
419 if (tp_name == NULL)
421 if (strlen(tp_name) !
[all...]

Completed in 253 milliseconds