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

1 2

  /external/python/cpython3/Doc/includes/
custom.c 11 .tp_doc = "Custom objects",
sublist.c 33 .tp_doc = "SubList objects",
typestruct.h 36 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
custom2.c 100 .tp_doc = "Custom objects",
custom3.c 150 .tp_doc = "Custom objects",
custom4.c 162 .tp_doc = "Custom objects",
  /external/python/cpython2/Doc/includes/
typestruct.h 35 char *tp_doc; /* Documentation string */ member in struct:_typeobject
  /external/python/cpython3/Objects/
typeslots.inc 57 offsetof(PyHeapTypeObject, ht_type.tp_doc),
structseq.c 311 NULL, /* tp_doc */
356 type->tp_doc = desc->doc;
typeobject.c 803 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) {
804 return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc);
824 return _PyType_GetTextSignatureFromInternalDoc(type->tp_name, type->tp_doc);
2666 char *tp_doc; local
2939 char *tp_doc = PyObject_MALLOC(len); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
methodobject.c 302 0, /* tp_doc */
362 const char *doc = self->ob_type->tp_doc;
structseq.c 456 NULL, /* tp_doc */
499 type->tp_doc = desc->doc;
typeobject.c 575 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
576 return PyString_FromString(type->tp_doc);
2381 char *tp_doc = (char *)PyObject_MALLOC(n+1); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
methodobject.c 302 0, /* tp_doc */
362 const char *doc = self->ob_type->tp_doc;
structseq.c 455 NULL, /* tp_doc */
498 type->tp_doc = desc->doc;
typeobject.c 569 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
570 return PyString_FromString(type->tp_doc);
2361 char *tp_doc = (char *)PyObject_MALLOC(n+1); local
    [all...]
  /external/python/cpython2/Objects/
methodobject.c 302 0, /* tp_doc */
362 const char *doc = self->ob_type->tp_doc;
structseq.c 456 NULL, /* tp_doc */
499 type->tp_doc = desc->doc;
typeobject.c 595 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
596 return PyString_FromString(type->tp_doc);
2421 char *tp_doc = (char *)PyObject_MALLOC(n+1); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 358 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 358 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
threadmodule.c 150 0, /* tp_doc */
255 /* tp_doc */ "Thread-local dummy",
510 /* tp_doc */ "Thread-local data",
913 Locktype.tp_doc = lock_doc;
  /external/python/cpython2/Include/
object.h 358 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
    [all...]
  /external/python/cpython2/Modules/
threadmodule.c 150 0, /* tp_doc */
255 /* tp_doc */ "Thread-local dummy",
516 /* tp_doc */ "Thread-local data",
922 Locktype.tp_doc = lock_doc;
  /external/python/cpython3/Include/
object.h 381 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
    [all...]

Completed in 1027 milliseconds

1 2