Home
last modified time | relevance | path

Searched refs:callmethod (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Demo/newmetaclasses/
DEiffel.py59 return self._descr.callmethod(self._inst, args, kwargs)
74 def callmethod(self, inst, args, kwargs): member in EiffelDescriptor
/external/python/cpython3/Tools/demo/
Deiffel.py68 return self._descr.callmethod(self._inst, args, kwargs)
84 def callmethod(self, inst, args, kwargs): member in EiffelDescriptor
/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py1022 callmethod = object.__getattribute__(self, '_callmethod')
1023 return callmethod('__getattribute__', (key,))
1027 callmethod = object.__getattribute__(self, '_callmethod')
1028 return callmethod('__setattr__', (key, value))
1032 callmethod = object.__getattribute__(self, '_callmethod')
1033 return callmethod('__delattr__', (key,))
/external/python/cpython3/Lib/multiprocessing/
Dmanagers.py1059 callmethod = object.__getattribute__(self, '_callmethod')
1060 return callmethod('__getattribute__', (key,))
1064 callmethod = object.__getattribute__(self, '_callmethod')
1065 return callmethod('__setattr__', (key, value))
1069 callmethod = object.__getattribute__(self, '_callmethod')
1070 return callmethod('__delattr__', (key,))
/external/python/cpython3/Objects/
Dabstract.c2555 callmethod(PyObject* func, const char *format, va_list va, int is_size_t) in callmethod() function
2601 retval = callmethod(func, format, va, 0); in PyObject_CallMethod()
2624 retval = callmethod(func, format, va, 0); in _PyObject_CallMethodId()
2646 retval = callmethod(func, format, va, 1); in _PyObject_CallMethod_SizeT()
2669 retval = callmethod(func, format, va, 1); in _PyObject_CallMethodId_SizeT()