/external/python/pybind11/include/pybind11/detail/ |
D | class.h | 624 char *tp_doc = nullptr; in make_new_python_type() local 629 tp_doc = (char *) PyObject_MALLOC(size); in make_new_python_type() 630 memcpy((void *) tp_doc, rec.doc, size); in make_new_python_type() 656 type->tp_doc = tp_doc; in make_new_python_type()
|
/external/python/cpython3/Doc/includes/ |
D | custom.c | 12 .tp_doc = "Custom objects",
|
D | typestruct.h | 36 const char *tp_doc; /* Documentation string */ member
|
D | sublist.c | 34 .tp_doc = "SubList objects",
|
D | custom2.c | 101 .tp_doc = "Custom objects",
|
D | custom3.c | 151 .tp_doc = "Custom objects",
|
D | custom4.c | 163 .tp_doc = "Custom objects",
|
/external/python/cpython2/Doc/includes/ |
D | typestruct.h | 35 char *tp_doc; /* Documentation string */ member
|
/external/python/cpython3/Objects/ |
D | picklebufobject.c | 209 .tp_doc = "Wrapper for potentially out-of-band buffers",
|
D | typeobject.c | 900 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) { in type_get_doc() 901 return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc); in type_get_doc() 923 return _PyType_GetTextSignatureFromInternalDoc(type->tp_name, type->tp_doc); in type_get_text_signature() 2883 char *tp_doc = (char *)PyObject_Malloc(size); in type_new_set_doc() local 2884 if (tp_doc == NULL) { in type_new_set_doc() 2889 memcpy(tp_doc, doc_str, size); in type_new_set_doc() 2890 type->tp_doc = tp_doc; in type_new_set_doc() 3516 type->tp_doc = NULL; in PyType_FromModuleAndSpec() 3520 char *tp_doc = PyObject_Malloc(len); in PyType_FromModuleAndSpec() local 3521 if (tp_doc == NULL) { in PyType_FromModuleAndSpec() [all …]
|
D | typeslots.inc | 57 {-1, offsetof(PyTypeObject, tp_doc)},
|
D | unionobject.c | 450 .tp_doc = "Represent a PEP 604 union type\n"
|
D | structseq.c | 490 type->tp_doc = desc->doc; in _PyStructSequence_InitType()
|
D | genericaliasobject.c | 636 .tp_doc = "Represent a PEP 585 generic type\n"
|
/external/tensorflow/tensorflow/python/util/ |
D | fast_module_type.cc | 241 obj.tp_doc = "FastModuleType objects"; in __anon0e55d6a00102()
|
/external/python/cpython2/Objects/ |
D | methodobject.c | 362 const char *doc = self->ob_type->tp_doc; in Py_FindMethodInChain()
|
D | typeobject.c | 595 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) in type_get_doc() 596 return PyString_FromString(type->tp_doc); in type_get_doc() 2421 char *tp_doc = (char *)PyObject_MALLOC(n+1); in type_new() local 2422 if (tp_doc == NULL) { in type_new() 2426 memcpy(tp_doc, PyString_AS_STRING(doc), n+1); in type_new() 2427 type->tp_doc = tp_doc; in type_new() 2761 PyObject_Free((char *)type->tp_doc); in type_dealloc() 4270 if (type->tp_doc != NULL) { 4271 PyObject *doc = PyString_FromString(type->tp_doc);
|
D | structseq.c | 499 type->tp_doc = desc->doc; in PyStructSequence_InitType()
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 226 const char *tp_doc; /* Documentation string */ member
|
/external/python/cpython2/Modules/ |
D | threadmodule.c | 922 Locktype.tp_doc = lock_doc; in initthread()
|
/external/python/cpython2/Include/ |
D | object.h | 358 const char *tp_doc; /* Documentation string */ member
|
/external/python/cpython3/Doc/c-api/ |
D | type.rst | 188 ``NULL`` as the ``tp_doc`` slot.
|
/external/python/cpython3/Doc/extending/ |
D | newtypes_tutorial.rst | 93 .tp_doc = "Custom objects", 162 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. :: 164 .tp_doc = "Custom objects",
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 102 "Noddy objects", /* tp_doc */ 171 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. :: 173 "Noddy objects", /* tp_doc */ 947 char *tp_doc; 1512 0, /* tp_doc */
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 1533 .tp_doc = _asyncio_Future___init____doc__, 2483 .tp_doc = _asyncio_Task___init____doc__,
|