/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | methodobject.c | 93 f->m_ml->ml_name, size); in PyCFunction_Call() 104 f->m_ml->ml_name, size); in PyCFunction_Call() 124 f->m_ml->ml_name); in PyCFunction_Call() 160 return PyString_FromString(m->m_ml->ml_name); in meth_get__name__() 206 m->m_ml->ml_name); in meth_repr() 208 m->m_ml->ml_name, in meth_repr() 220 if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0) in meth_compare() 328 for (ml = c->methods; ml->ml_name != NULL; ml++) in listmethodchain() 336 for (ml = c->methods; ml->ml_name != NULL; ml++) { in listmethodchain() 337 PyList_SetItem(v, i, PyString_FromString(ml->ml_name)); in listmethodchain() [all …]
|
D | descrobject.c | 633 type, method->ml_name); in PyDescr_NewMethod() 645 type, method->ml_name); in PyDescr_NewClassMethod()
|
D | typeobject.c | 3581 for (; meth->ml_name != NULL; meth++) { 3584 if (PyDict_GetItemString(dict, meth->ml_name) && 3607 err = PyDict_SetItemString(dict, meth->ml_name, descr);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | methodobject.c | 93 f->m_ml->ml_name, size); in PyCFunction_Call() 104 f->m_ml->ml_name, size); in PyCFunction_Call() 124 f->m_ml->ml_name); in PyCFunction_Call() 160 return PyString_FromString(m->m_ml->ml_name); in meth_get__name__() 206 m->m_ml->ml_name); in meth_repr() 208 m->m_ml->ml_name, in meth_repr() 220 if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0) in meth_compare() 328 for (ml = c->methods; ml->ml_name != NULL; ml++) in listmethodchain() 336 for (ml = c->methods; ml->ml_name != NULL; ml++) { in listmethodchain() 337 PyList_SetItem(v, i, PyString_FromString(ml->ml_name)); in listmethodchain() [all …]
|
D | descrobject.c | 596 type, method->ml_name); in PyDescr_NewMethod() 608 type, method->ml_name); in PyDescr_NewClassMethod()
|
D | typeobject.c | 3548 for (; meth->ml_name != NULL; meth++) { 3550 if (PyDict_GetItemString(dict, meth->ml_name) && 3573 if (PyDict_SetItemString(dict, meth->ml_name, descr) < 0)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/ |
D | libpython.py | 542 def __init__(self, ml_name): argument 543 self.ml_name = ml_name 546 return "<built-in function %s>" % self.ml_name 549 def __init__(self, ml_name, pyop_m_self): argument 550 self.ml_name = ml_name 555 % (self.ml_name, 569 ml_name = m_ml['ml_name'].string() 573 return BuiltInFunctionProxy(ml_name) 575 return BuiltInMethodProxy(ml_name, pyop_m_self)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | methodobject.h | 38 const char *ml_name; /* The name of the built-in function/method */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | methodobject.h | 38 const char *ml_name; /* The name of the built-in function/method */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _lsprof.c | 198 fn->m_ml->ml_name); in normalizeUserObj() 201 fn->m_ml->ml_name); in normalizeUserObj() 208 PyObject *name = PyString_FromString(fn->m_ml->ml_name); in normalizeUserObj() 222 fn->m_ml->ml_name); in normalizeUserObj()
|
D | _elementtree.c | 3048 for (mp = element_methods; mp->ml_name; mp++) 3050 mp->ml_name = "__reduce__";
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | modsupport.c | 72 for (ml = methods; ml->ml_name != NULL; ml++) { in Py_InitModule4() 86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) { in Py_InitModule4()
|
D | ceval.c | 3895 return ((PyCFunctionObject*)func)->m_ml->ml_name; in PyEval_GetFuncName() 3930 ((PyCFunctionObject *)func)->m_ml->ml_name, in err_args() 3935 ((PyCFunctionObject *)func)->m_ml->ml_name, in err_args()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | modsupport.c | 72 for (ml = methods; ml->ml_name != NULL; ml++) { in Py_InitModule4() 86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) { in Py_InitModule4()
|
D | ceval.c | 3917 return ((PyCFunctionObject*)func)->m_ml->ml_name; in PyEval_GetFuncName() 3952 ((PyCFunctionObject *)func)->m_ml->ml_name, in err_args() 3957 ((PyCFunctionObject *)func)->m_ml->ml_name, in err_args()
|