Home
last modified time | relevance | path

Searched refs:isfunction (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/idlelib/
Dbrowser.py197 self.isfunction = isinstance(obj, pyclbr.Function)
202 if self.isfunction:
209 if self.isfunction:
/third_party/qrcodegen/rust/src/
Dlib.rs141 isfunction: Vec<bool>, field
294 isfunction: vec![false; size * size], in encode_codewords()
322 result.isfunction.clear(); in encode_codewords()
323 result.isfunction.shrink_to_fit(); in encode_codewords()
508 self.isfunction[(y * self.size + x) as usize] = true; in set_function_module()
575 if !self.isfunction[(y * self.size + x) as usize] && i < data.len() * 8 { in draw_codewords()
608 *self.module_mut(x, y) ^= invert & !self.isfunction[(y * self.size + x) as usize]; in apply_mask()
/third_party/python/Lib/
Dinspect.py223 if isclass(object) or ismethod(object) or isfunction(object):
237 if isclass(object) or ismethod(object) or isfunction(object):
277 def isfunction(object): function
297 if not isfunction(f):
416 or isfunction(object)
684 elif isfunction(obj):
789 if isfunction(object):
978 if isfunction(object):
1566 if not isfunction(func):
2281 if not isfunction(func):
[all …]
Ddoctest.py957 elif inspect.isfunction(object):
1112 if inspect.isfunction(obj): obj = obj.__code__
Dtrace.py485 if inspect.isfunction(f)]
Dpydoc.py113 elif inspect.isfunction(obj):
801 if inspect.isfunction(value): fdict[value] = fdict[key]
1704 if inspect.isfunction(thing):
/third_party/python/Lib/idlelib/idle_test/
Dtest_browser.py183 self.assertFalse(self.cbt_C1.isfunction)
185 self.assertTrue(self.cbt_f1.isfunction)
/third_party/python/Lib/asyncio/
Dformat_helpers.py12 if inspect.isfunction(func):
/third_party/python/Lib/test/
Dtest_inspect.py92 inspect.isframe, inspect.isfunction, inspect.ismethod,
106 other == inspect.isfunction:
147 self.istest(inspect.isfunction, 'mod.spam')
148 self.istest(inspect.isfunction, 'mod.StupidGit.abuse')
429 functions = inspect.getmembers(mod, inspect.isfunction)
Dtest_decimal.py5581 inspect.isfunction(p_func)):
5663 if inspect.isfunction(p_func):
/third_party/python/Doc/library/
Dinspect.rst306 .. function:: isfunction(object)
423 :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin`