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

  /external/chromium_org/tools/telemetry/telemetry/
__init__.py 41 inspect.isfunction(getattr(m, x))):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 133 self.isfunction = isinstance(self.cl, pyclbr.Function)
136 if self.isfunction:
142 if self.isfunction:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 133 self.isfunction = isinstance(self.cl, pyclbr.Function)
136 if self.isfunction:
142 if self.isfunction:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 10 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
81 But not if ismethod() or isclass() or isfunction() are true.
95 and not isfunction(object)
142 def isfunction(object): function
160 See help(isfunction) for attributes listing."""
161 return bool((isfunction(object) or ismethod(object)) and
239 or isfunction(object)
411 if isfunction(object):
568 if isfunction(object):
814 if not isfunction(func)
    [all...]
DocXMLRPCServer.py 88 elif inspect.isfunction(object):
pydoc.py 652 if inspect.isfunction(value): fdict[value] = fdict[key]
    [all...]
trace.py 547 if inspect.isfunction(f)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 10 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
81 But not if ismethod() or isclass() or isfunction() are true.
95 and not isfunction(object)
142 def isfunction(object): function
160 See help(isfunction) for attributes listing."""
161 return bool((isfunction(object) or ismethod(object)) and
239 or isfunction(object)
411 if isfunction(object):
568 if isfunction(object):
814 if not isfunction(func)
    [all...]
DocXMLRPCServer.py 88 elif inspect.isfunction(object):
pydoc.py 652 if inspect.isfunction(value): fdict[value] = fdict[key]
    [all...]
trace.py 547 if inspect.isfunction(f)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_inspect.py 23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
57 other == inspect.isfunction:
80 self.istest(inspect.isfunction, 'mod.spam')
236 functions = inspect.getmembers(mod, inspect.isfunction)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_inspect.py 23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
57 other == inspect.isfunction:
80 self.istest(inspect.isfunction, 'mod.spam')
236 functions = inspect.getmembers(mod, inspect.isfunction)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 750 if not inspect.isfunction(function):
    [all...]

Completed in 134 milliseconds