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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
methodobject.c 93 f->m_ml->ml_name, size);
104 f->m_ml->ml_name, size);
124 f->m_ml->ml_name);
160 return PyString_FromString(m->m_ml->ml_name);
206 m->m_ml->ml_name);
208 m->m_ml->ml_name,
220 if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0)
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
    [all...]
descrobject.c 633 type, method->ml_name);
645 type, method->ml_name);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
methodobject.c 93 f->m_ml->ml_name, size);
104 f->m_ml->ml_name, size);
124 f->m_ml->ml_name);
160 return PyString_FromString(m->m_ml->ml_name);
206 m->m_ml->ml_name);
208 m->m_ml->ml_name,
220 if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0)
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
    [all...]
  /external/python/cpython2/Objects/
methodobject.c 93 f->m_ml->ml_name, size);
104 f->m_ml->ml_name, size);
124 f->m_ml->ml_name);
160 return PyString_FromString(m->m_ml->ml_name);
206 m->m_ml->ml_name);
208 m->m_ml->ml_name,
220 if (strcmp(a->m_ml->ml_name, b->m_ml->ml_name) < 0)
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++)
    [all...]
  /external/python/cpython3/Objects/
methodobject.c 108 f->m_ml->ml_name);
122 f->m_ml->ml_name, size);
134 f->m_ml->ml_name, size);
181 func->m_ml->ml_name);
188 func->m_ml->ml_name, nargs);
198 func->m_ml->ml_name);
205 func->m_ml->ml_name, nargs);
221 func->m_ml->ml_name);
329 return PyUnicode_FromString(m->m_ml->ml_name);
333 return Py_BuildValue("O(Os)", getattr, m->m_self, m->m_ml->ml_name);
    [all...]
moduleobject.c 139 for (fdef = functions; fdef->ml_name != NULL; fdef++) {
151 if (PyObject_SetAttrString(module, fdef->ml_name, func) != 0) {
descrobject.c 342 return _PyType_GetDocFromInternalDoc(descr->d_method->ml_name, descr->d_method->ml_doc);
348 return _PyType_GetTextSignatureFromInternalDoc(descr->d_method->ml_name, descr->d_method->ml_doc);
692 type, method->ml_name);
704 type, method->ml_name);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /external/python/cpython2/Include/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /prebuilts/gdb/darwin-x86/include/python2.7/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /prebuilts/gdb/linux-x86/include/python2.7/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
methodobject.h 38 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /external/python/cpython3/Include/
methodobject.h 55 const char *ml_name; /* The name of the built-in function/method */ member in struct:PyMethodDef
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
libpython.py 542 def __init__(self, ml_name):
543 self.ml_name = ml_name
546 return "<built-in function %s>" % self.ml_name
549 def __init__(self, ml_name, pyop_m_self):
550 self.ml_name = ml_name
555 % (self.ml_name,
569 ml_name = m_ml['ml_name'].string()
    [all...]
  /external/python/cpython2/Tools/gdb/
libpython.py 578 def __init__(self, ml_name):
579 self.ml_name = ml_name
582 return "<built-in function %s>" % self.ml_name
585 def __init__(self, ml_name, pyop_m_self):
586 self.ml_name = ml_name
591 % (self.ml_name,
605 ml_name = m_ml['ml_name'].string(
    [all...]
  /external/python/cpython3/Modules/
_lsprof.c 187 fn->m_ml->ml_name);
193 return PyUnicode_FromFormat("<%s>", fn->m_ml->ml_name);
200 PyObject *name = PyUnicode_FromString(fn->m_ml->ml_name);
218 modname, fn->m_ml->ml_name);
221 fn->m_ml->ml_name);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_lsprof.c 198 fn->m_ml->ml_name);
201 fn->m_ml->ml_name);
208 PyObject *name = PyString_FromString(fn->m_ml->ml_name);
222 fn->m_ml->ml_name);
  /external/python/cpython2/Modules/
_lsprof.c 198 fn->m_ml->ml_name);
201 fn->m_ml->ml_name);
208 PyObject *name = PyString_FromString(fn->m_ml->ml_name);
222 fn->m_ml->ml_name);
  /external/python/cpython3/Tools/gdb/
libpython.py 590 def __init__(self, ml_name):
591 self.ml_name = ml_name
594 return "<built-in function %s>" % self.ml_name
597 def __init__(self, ml_name, pyop_m_self):
598 self.ml_name = ml_name
603 % (self.ml_name,
617 ml_name = m_ml['ml_name'].string(
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyinit.swg 272 for (i = 0; methods[i].ml_name; ++i) {
435 for (i = 0; SwigMethods[i].ml_name != NULL; ++i)
436 SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
modsupport.c 72 for (ml = methods; ml->ml_name != NULL; ml++) {
86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
modsupport.c 72 for (ml = methods; ml->ml_name != NULL; ml++) {
86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) {
  /external/python/cpython2/Python/
modsupport.c 72 for (ml = methods; ml->ml_name != NULL; ml++) {
86 if (PyDict_SetItemString(d, ml->ml_name, v) != 0) {

Completed in 532 milliseconds

1 2