HomeSort by relevance Sort by last modified time
    Searched refs:ismethod (Results 1 - 15 of 15) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 10 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
67 def ismethod(object): function
81 But not if ismethod() or isclass() or isfunction() are true.
91 im_func attribute (etc) when an object passes ismethod()."""
94 and not ismethod(object) # mutual exclusion
161 return bool((isfunction(object) or ismethod(object)) and
240 or ismethod(object)
320 if (ismethod(obj_via_getattr) or
409 if ismethod(object):
566 if ismethod(object)
    [all...]
DocXMLRPCServer.py 77 if inspect.ismethod(object):
pydoc.py 130 return inspect.ismethod(obj) or inspect.ismethoddescriptor(obj)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 10 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
67 def ismethod(object): function
81 But not if ismethod() or isclass() or isfunction() are true.
91 im_func attribute (etc) when an object passes ismethod()."""
94 and not ismethod(object) # mutual exclusion
161 return bool((isfunction(object) or ismethod(object)) and
240 or ismethod(object)
320 if (ismethod(obj_via_getattr) or
409 if ismethod(object):
566 if ismethod(object)
    [all...]
DocXMLRPCServer.py 77 if inspect.ismethod(object):
pydoc.py 130 return inspect.ismethod(obj) or inspect.ismethoddescriptor(obj)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 69 def ismethod(oclass, obj, name): function in function:PyclbrTest.checkModule
118 if ismethod(py_item, getattr(py_item, m), m):
test_inspect.py 23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
82 self.istest(inspect.ismethod, 'git.argue')
616 # contrary to spec, ismethod() is also True for unbound methods
618 self.assertIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
621 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
629 self.assertIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
632 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 69 def ismethod(oclass, obj, name): function in function:PyclbrTest.checkModule
118 if ismethod(py_item, getattr(py_item, m), m):
test_inspect.py 23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
82 self.istest(inspect.ismethod, 'git.argue')
616 # contrary to spec, ismethod() is also True for unbound methods
618 self.assertIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
621 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
629 self.assertIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
632 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lparser.c 788 static void body (LexState *ls, expdesc *e, int ismethod, int line) {
796 if (ismethod) {
1456 int ismethod = 0; local
1470 int ismethod; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set.py 104 predicate=inspect.ismethod):
  /external/chromium_org/third_party/ply/
yacc.py     [all...]
  /external/lldb/test/
dotest.py     [all...]
lldbtest.py     [all...]

Completed in 326 milliseconds