Searched refs:_void (Results 1 – 3 of 3) sorted by relevance
/external/python/funcsigs/funcsigs/ |
D | __init__.py | 179 class _void(object): class 282 def replace(self, name=_void, kind=_void, annotation=_void, 283 default=_void, _partial_kwarg=_void): 286 if name is _void: 289 if kind is _void: 292 if annotation is _void: 295 if default is _void: 298 if _partial_kwarg is _void: 596 def replace(self, parameters=_void, return_annotation=_void): 602 if parameters is _void: [all …]
|
/external/python/cpython3/Lib/ |
D | inspect.py | 1890 defaults = getattr(obj, '__defaults__', _void) # Important to use _void ... 1891 kwdefaults = getattr(obj, '__kwdefaults__', _void) # ... and not None here 2446 class _void: class 2581 def replace(self, *, name=_void, kind=_void, 2582 annotation=_void, default=_void): 2585 if name is _void: 2588 if kind is _void: 2591 if annotation is _void: 2594 if default is _void: 2890 def replace(self, *, parameters=_void, return_annotation=_void): [all …]
|
/external/mesa3d/src/compiler/spirv/ |
D | vtn_alu.c | 382 const struct vtn_decoration *dec, void *_void) in handle_no_contraction() argument
|