/external/python/cpython2/Objects/ |
D | iterobject.c | 181 result = PyObject_Call(it->it_callable, args, NULL); in calliter_iternext()
|
D | typeobject.c | 1283 retval = PyObject_Call(func, args, NULL); in call_method() 1323 retval = PyObject_Call(func, args, NULL); in call_maybe() 5103 retval = PyObject_Call(func, args, NULL); 5189 res = PyObject_Call(func, args, NULL); 5282 PyObject *temp = PyObject_Call(func, args, NULL); 5421 res = PyObject_Call(func, args, NULL); 5546 res = PyObject_Call(meth, args, kwds); 5687 res = PyObject_Call(func, args, NULL); 5727 res = PyObject_Call(func, args, NULL); 5806 res = PyObject_Call(meth, args, kwds); [all …]
|
D | abstract.c | 2539 PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) function 2579 retval = PyObject_Call(callable, args, NULL); 2752 tmp = PyObject_Call(callable, args, NULL); 2774 tmp = PyObject_Call(callable, args, NULL);
|
D | classobject.c | 2153 res = PyObject_Call(call, arg, kw); in instance_call() 2602 result = PyObject_Call((PyObject *)func, arg, kw); in instancemethod_call()
|
D | listobject.c | 1011 res = PyObject_Call(compare, args, NULL); in islt()
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 511 junk = PyObject_Call(self->write, self->arg, NULL); in write_other() 687 str = PyObject_Call(self->read, self->arg, NULL); in read_other() 2062 PyObject_Call(getinitargs_func, empty_tuple, NULL))) in save_inst() 2124 state = PyObject_Call(getstate_func, empty_tuple, NULL); in save_inst() 2329 pid = PyObject_Call(f, self->arg, NULL); in save_pers() 2761 t = PyObject_Call(__reduce__, self->arg, NULL); in save() 2779 t = PyObject_Call(__reduce__, in save() 2793 t = PyObject_Call(__reduce__, in save() 4095 pid = PyObject_Call(self->pers_func, self->arg, in load_persid() 4132 pid = PyObject_Call(self->pers_func, self->arg, in load_binpersid() [all …]
|
D | _functoolsmodule.c | 197 ret = PyObject_Call(pto->fn, argappl, kwappl); in partial_call()
|
D | main.c | 192 result = PyObject_Call(runmodule, runargs, NULL); in RunModule()
|
D | _lsprof.c | 133 PyObject *o = PyObject_Call(pObj->externalTimer, empty_tuple, NULL); in CallExternalTimer()
|
D | operator.c | 851 result = PyObject_Call(method, mc->args, mc->kwds); in methodcaller_call()
|
D | _csv.c | 527 dialect = PyObject_Call((PyObject *)&Dialect_Type, ctor_args, kwargs); in _call_dialect()
|
D | itertoolsmodule.c | 1401 result = PyObject_Call(lz->func, args, NULL); in starmap_next() 1577 result = PyObject_Call(lz->func, argtuple, NULL); in imap_next()
|
D | pyexpat.c | 930 str = PyObject_Call(meth, arg, NULL); in readinst()
|
/external/python/cpython2/Modules/_sqlite/ |
D | module.c | 74 result = PyObject_Call(factory, args, kwargs); in module_connect()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 913 PyObject_Call:PyObject*::+1: 914 PyObject_Call:PyObject*:callable_object:0: 915 PyObject_Call:PyObject*:args:0: 916 PyObject_Call:PyObject*:kw:0:
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 309 good = PyObject_Call(func, arg, NULL); in builtin_filter() 1505 return PyObject_Call((PyObject*)&PyFile_Type, args, kwds); in builtin_open() 2131 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce() 2256 v = PyObject_Call(callable, newargs, kwds); in builtin_sorted()
|
D | ceval.c | 4042 result = PyObject_Call(func, args, NULL); in _PyEval_CallTracing() 4221 result = PyObject_Call(func, arg, kw); in PyEval_CallObjectWithKeywords() 4569 result = PyObject_Call(func, callargs, kwdict); in do_call() 4666 result = PyObject_Call(func, callargs, kwdict); in ext_do_call()
|
/external/python/cpython2/Include/ |
D | abstract.h | 304 PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
|
/external/protobuf/python/google/protobuf/pyext/ |
D | repeated_composite_container.cc | 367 if (PyObject_Call(m.get(), args, kwds) == NULL) in SortPythonMessages()
|
D | repeated_scalar_container.cc | 629 ScopedPyObjectPtr res(PyObject_Call(m.get(), args, kwds)); in Sort()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 120 "PyObject_Call"
|
/external/python/cpython2/Doc/c-api/ |
D | object.rst | 235 .. c:function:: PyObject* PyObject_Call(PyObject *callable_object, PyObject *args, PyObject *kw)
|
D | typeobj.rst | 357 for :c:func:`PyObject_Call`.
|
/external/python/cpython2/Doc/extending/ |
D | extending.rst | 566 :c:func:`PyObject_Call`, which supports arguments and keyword arguments. As in 572 result = PyObject_Call(my_callback, NULL, dict);
|
/external/python/cpython2/Misc/ |
D | NEWS | 10645 PyObject_Call() never calling back out to Python code to trigger
|