Searched refs:tp_doc (Results 1 - 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dmethodobject.c302 0, /* tp_doc */
362 const char *doc = self->ob_type->tp_doc;
H A Dstructseq.c456 NULL, /* tp_doc */
499 type->tp_doc = desc->doc;
H A Dtypeobject.c575 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
576 return PyString_FromString(type->tp_doc);
2373 /* Set tp_doc to a copy of dict['__doc__'], if the latter is there
2374 and is a string. The __doc__ accessor will first look for tp_doc;
2381 char *tp_doc = (char *)PyObject_MALLOC(n+1); local
2382 if (tp_doc == NULL) {
2386 memcpy(tp_doc, PyString_AS_STRING(doc), n+1);
2387 type->tp_doc = tp_doc;
2652 /* A type's tp_doc i
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dmethodobject.c302 0, /* tp_doc */
362 const char *doc = self->ob_type->tp_doc;
H A Dstructseq.c455 NULL, /* tp_doc */
498 type->tp_doc = desc->doc;
H A Dtypeobject.c569 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
570 return PyString_FromString(type->tp_doc);
2353 /* Set tp_doc to a copy of dict['__doc__'], if the latter is there
2354 and is a string. The __doc__ accessor will first look for tp_doc;
2361 char *tp_doc = (char *)PyObject_MALLOC(n+1); local
2362 if (tp_doc == NULL) {
2366 memcpy(tp_doc, PyString_AS_STRING(doc), n+1);
2367 type->tp_doc = tp_doc;
2625 /* A type's tp_doc i
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dobject.h358 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dobject.h358 const char *tp_doc; /* Documentation string */ member in struct:_typeobject
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dthreadmodule.c150 0, /* tp_doc */
255 /* tp_doc */ "Thread-local dummy",
510 /* tp_doc */ "Thread-local data",
913 Locktype.tp_doc = lock_doc;

Completed in 74 milliseconds