Home
last modified time | relevance | path

Searched refs:QAPIExpression (Results 1 – 3 of 3) sorted by relevance

/qemu/scripts/qapi/
H A Dexpr.py46 from .parser import QAPIExpression
223 def check_flags(expr: QAPIExpression) -> None: argument
444 def check_enum(expr: QAPIExpression) -> None: argument
483 def check_struct(expr: QAPIExpression) -> None: argument
499 def check_union(expr: QAPIExpression) -> None: argument
527 def check_alternate(expr: QAPIExpression) -> None: argument
553 def check_command(expr: QAPIExpression) -> None: argument
575 def check_event(expr: QAPIExpression) -> None: argument
595 def check_exprs(exprs: List[QAPIExpression]) -> List[QAPIExpression]: argument
H A Dschema.py45 from .parser import QAPIDoc, QAPIExpression, QAPISchemaParser
1225 def _def_include(self, expr: QAPIExpression) -> None: argument
1337 def _def_enum_type(self, expr: QAPIExpression) -> None: argument
1376 def _def_struct_type(self, expr: QAPIExpression) -> None: argument
1400 def _def_union_type(self, expr: QAPIExpression) -> None: argument
1425 def _def_alternate_type(self, expr: QAPIExpression) -> None: argument
1443 def _def_command(self, expr: QAPIExpression) -> None: argument
1468 def _def_event(self, expr: QAPIExpression) -> None: argument
1482 def _def_exprs(self, exprs: List[QAPIExpression]) -> None: argument
H A Dparser.py47 class QAPIExpression(Dict[str, Any]): class
110 self.exprs: List[QAPIExpression] = []
184 self.exprs.append(QAPIExpression(expr, info, doc))
818 def check_expr(self, expr: QAPIExpression) -> None: argument