Home
last modified time | relevance | path

Searched refs:_void (Results 1 – 4 of 4) sorted by relevance

/external/python/funcsigs/funcsigs/
D__init__.py179 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/
Dinspect.py1851 defaults = getattr(obj, '__defaults__', _void) # Important to use _void ...
1852 kwdefaults = getattr(obj, '__kwdefaults__', _void) # ... and not None here
2399 class _void: class
2533 def replace(self, *, name=_void, kind=_void,
2534 annotation=_void, default=_void):
2537 if name is _void:
2540 if kind is _void:
2543 if annotation is _void:
2546 if default is _void:
2843 def replace(self, *, parameters=_void, return_annotation=_void):
[all …]
/external/mesa3d/src/compiler/spirv/
Dvtn_alu.c376 const struct vtn_decoration *dec, void *_void) in handle_no_contraction() argument
/external/python/cpython3/Tools/clinic/
Dclinic.py47 _void = inspect._void variable