Home
last modified time | relevance | path

Searched refs:ifcontext (Results 1 – 5 of 5) sorted by relevance

/qemu/scripts/qapi/
H A Dtypes.py19 from .gen import QAPISchemaModularCVisitor, gen_features, ifcontext
331 with ifcontext(ifcond, self._genh, self._genc):
340 with ifcontext(ifcond, self._genh, self._genc):
356 with ifcontext(ifcond, self._genh):
359 with ifcontext(ifcond, self._genh, self._genc):
374 with ifcontext(ifcond, self._genh):
378 with ifcontext(ifcond, self._genh, self._genc):
H A Dvisit.py24 from .gen import QAPISchemaModularCVisitor, gen_features, ifcontext
376 with ifcontext(ifcond, self._genh, self._genc):
385 with ifcontext(ifcond, self._genh, self._genc):
400 with ifcontext(ifcond, self._genh, self._genc):
417 with ifcontext(ifcond, self._genh, self._genc):
H A Dcommands.py29 ifcontext,
396 with ifcontext(ret_type.ifcond,
399 with ifcontext(ifcond, self._genh, self._genc):
408 with ifcontext(ifcond, self._genh, self._genc):
H A Devents.py18 from .gen import QAPISchemaModularCVisitor, build_params, ifcontext
236 with ifcontext(ifcond, self._genh, self._genc):
H A Dgen.py208 def ifcontext(ifcond: QAPISchemaIfCond, *args: QAPIGenCCode) -> Iterator[None]: function