Searched refs:isfunction (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/idlelib/ |
D | browser.py | 197 self.isfunction = isinstance(obj, pyclbr.Function) 202 if self.isfunction: 209 if self.isfunction:
|
/third_party/qrcodegen/rust/src/ |
D | lib.rs | 141 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/ |
D | inspect.py | 223 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 …]
|
D | doctest.py | 957 elif inspect.isfunction(object): 1112 if inspect.isfunction(obj): obj = obj.__code__
|
D | trace.py | 485 if inspect.isfunction(f)]
|
D | pydoc.py | 113 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/ |
D | test_browser.py | 183 self.assertFalse(self.cbt_C1.isfunction) 185 self.assertTrue(self.cbt_f1.isfunction)
|
/third_party/python/Lib/asyncio/ |
D | format_helpers.py | 12 if inspect.isfunction(func):
|
/third_party/python/Lib/test/ |
D | test_inspect.py | 92 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)
|
D | test_decimal.py | 5581 inspect.isfunction(p_func)): 5663 if inspect.isfunction(p_func):
|
/third_party/python/Doc/library/ |
D | inspect.rst | 306 .. function:: isfunction(object) 423 :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin`
|