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

1 2

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
classobject.h 33 PyObject *im_func; /* The callable object implementing the method */ member in struct:__anon80858
70 (((PyMethodObject *)meth) -> im_func)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
classobject.h 33 PyObject *im_func; /* The callable object implementing the method */ member in struct:__anon80981
70 (((PyMethodObject *)meth) -> im_func)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_funcattrs.py 42 self.f.a.im_func.known_attr = 7
176 self.assertEqual(self.f.b.im_func, self.b)
177 self.assertEqual(self.fi.b.im_func, self.b)
178 self.cannot_set_attr(self.f.b, "im_func", self.b, TypeError)
179 self.cannot_set_attr(self.fi.b, "im_func", self.b, TypeError)
205 self.f.a.im_func.known_attr = 7
239 self.f.a.im_func.klass = self.f
240 for method in [self.f.a, self.fi.a, self.fi.a.im_func]:
260 self.cannot_set_attr(self.f.a.im_func, '__dict__', d, TypeError)
261 self.cannot_set_attr(self.fi.a.im_func, '__dict__', d, TypeError
    [all...]
inspect_fodder2.py 99 method_in_dynamic_class = f().g.im_func
test_sys_setprofile.py 51 disallowed = [ident(self.add_event.im_func), ident(ident)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_funcattrs.py 42 self.f.a.im_func.known_attr = 7
176 self.assertEqual(self.f.b.im_func, self.b)
177 self.assertEqual(self.fi.b.im_func, self.b)
178 self.cannot_set_attr(self.f.b, "im_func", self.b, TypeError)
179 self.cannot_set_attr(self.fi.b, "im_func", self.b, TypeError)
205 self.f.a.im_func.known_attr = 7
239 self.f.a.im_func.klass = self.f
240 for method in [self.f.a, self.fi.a, self.fi.a.im_func]:
260 self.cannot_set_attr(self.f.a.im_func, '__dict__', d, TypeError)
261 self.cannot_set_attr(self.fi.a.im_func, '__dict__', d, TypeError
    [all...]
inspect_fodder2.py 99 method_in_dynamic_class = f().g.im_func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 17 PROTO = self.functype.im_func(typ, typ)
25 PROTO = self.functype.im_func(typ, c_byte, typ)
119 prototype = self.functype.im_func(POINTER(c_double))
124 prototype = self.functype.im_func(object)
128 proto = self.functype.im_func(None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 17 PROTO = self.functype.im_func(typ, typ)
25 PROTO = self.functype.im_func(typ, c_byte, typ)
119 prototype = self.functype.im_func(POINTER(c_double))
124 prototype = self.functype.im_func(object)
128 proto = self.functype.im_func(None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minicompat.py 103 get = getattr(klass, ("_get_" + name)).im_func
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minicompat.py 103 get = getattr(klass, ("_get_" + name)).im_func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 126 return class_ob.__init__.im_func
149 fob = ob.im_func
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 126 return class_ob.__init__.im_func
149 fob = ob.im_func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 89 notify_all = threading._Condition.notify_all.im_func
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 89 notify_all = threading._Condition.notify_all.im_func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 72 return getattr, (m.im_class, m.im_func.func_name)
74 return getattr, (m.im_self, m.im_func.func_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 72 return getattr, (m.im_class, m.im_func.func_name)
74 return getattr, (m.im_self, m.im_func.func_name)
  /development/tools/axl/
singletonmixin.py 86 return cls.__init__.im_func.func_code.co_argcount - 1
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 78 args, varargs, varkw, defaults = inspect.getargspec(object.im_func)
dis.py 27 if hasattr(x, 'im_func'):
28 x = x.im_func
inspect.py 74 im_func function object containing implementation of method
91 im_func attribute (etc) when an object passes ismethod()."""
410 object = object.im_func
567 object = object.im_func
813 func = func.im_func
    [all...]
copy.py 264 return type(x)(x.im_func, deepcopy(x.im_self, memo), x.im_class)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 78 args, varargs, varkw, defaults = inspect.getargspec(object.im_func)
dis.py 27 if hasattr(x, 'im_func'):
28 x = x.im_func
inspect.py 74 im_func function object containing implementation of method
91 im_func attribute (etc) when an object passes ismethod()."""
410 object = object.im_func
567 object = object.im_func
813 func = func.im_func
    [all...]

Completed in 767 milliseconds

1 2