Searched refs:callmethod (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Objects/ |
H A D | call.c | 598 callmethod(PyThreadState *tstate, PyObject* callable, const char *format, va_list va, int is_size_t) in callmethod() function 627 PyObject *retval = callmethod(tstate, callable, format, va, 0); in PyObject_CallMethod() 653 PyObject *retval = callmethod(tstate, callable, format, va, 0); in PyEval_CallMethod() 677 PyObject *retval = callmethod(tstate, callable, format, va, 1); in _PyObject_CallMethod() 701 PyObject *retval = callmethod(tstate, callable, format, va, 0); in _PyObject_CallMethodId() 714 PyObject *retval = callmethod(tstate, callable, format, va, 0); in _PyObject_CallMethodFormat() 736 PyObject *retval = callmethod(tstate, callable, format, va, 1); in _PyObject_CallMethod_SizeT() 760 PyObject *retval = callmethod(tstate, callable, format, va, 1); in _PyObject_CallMethodId_SizeT()
|
/third_party/python/Tools/demo/ |
H A D | eiffel.py | 68 return self._descr.callmethod(self._inst, args, kwargs) 84 def callmethod(self, inst, args, kwargs): member in EiffelDescriptor
|
/third_party/python/Lib/multiprocessing/ |
H A D | managers.py | 1124 callmethod = object.__getattribute__(self, '_callmethod') 1125 return callmethod('__getattribute__', (key,)) 1129 callmethod = object.__getattribute__(self, '_callmethod') 1130 return callmethod('__setattr__', (key, value)) 1134 callmethod = object.__getattribute__(self, '_callmethod') 1135 return callmethod('__delattr__', (key,))
|
Completed in 4 milliseconds