Searched refs:QAPIDoc (Results 1 – 5 of 5) sorted by relevance
/qemu/scripts/qapi/ |
H A D | parser.py | 111 self.docs: List[QAPIDoc] = [] 498 doc = QAPIDoc(info, symbol) 580 QAPIDoc.Kind.from_string(match.group(1)) 598 doc = QAPIDoc(info) 622 class QAPIDoc: class 652 return QAPIDoc.Kind[kind.upper()] 697 self.all_sections: List[QAPIDoc.Section] = [ 698 QAPIDoc.Section(info, QAPIDoc.Kind.PLAIN) 701 self.body: Optional[QAPIDoc.Section] = self.all_sections[0] 703 self.args: Dict[str, QAPIDoc.ArgSection] = {} [all …]
|
H A D | schema.py | 45 from .parser import QAPIDoc, QAPIExpression, QAPISchemaParser 96 def connect_doc(self, doc: Optional[QAPIDoc] = None) -> None: argument 122 doc: Optional[QAPIDoc], argument 148 def connect_doc(self, doc: Optional[QAPIDoc] = None) -> None: argument 419 doc: Optional[QAPIDoc], argument 437 def connect_doc(self, doc: Optional[QAPIDoc] = None) -> None: argument 522 doc: Optional[QAPIDoc], argument 601 def connect_doc(self, doc: Optional[QAPIDoc] = None) -> None: argument 651 doc: Optional[QAPIDoc], argument 700 def connect_doc(self, doc: Optional[QAPIDoc] = None) -> None: argument [all …]
|
/qemu/docs/sphinx/ |
H A D | qapidoc.py | 44 from qapi.parser import QAPIDoc 223 def visit_paragraph(self, section: QAPIDoc.Section) -> None: 232 def visit_member(self, section: QAPIDoc.ArgSection) -> None: 246 def visit_feature(self, section: QAPIDoc.ArgSection) -> None: 255 def visit_returns(self, section: QAPIDoc.Section) -> None: 269 def visit_errors(self, section: QAPIDoc.Section) -> None: 280 assert ent.doc.since.kind == QAPIDoc.Kind.SINCE 353 while sections[gen_index].kind == QAPIDoc.Kind.MEMBER: 363 if section.kind == QAPIDoc.Kind.PLAIN: 365 elif section.kind == QAPIDoc 394 visit_freeform(self, doc: QAPIDoc) global() argument [all...] |
H A D | qapidoc_legacy.py | 35 from qapi.parser import QAPIDoc 245 if section.kind == QAPIDoc.Kind.TODO: 249 if section.kind == QAPIDoc.Kind.PLAIN:
|
/qemu/docs/devel/ |
H A D | qapi-domain.rst | 33 QAPIDoc blocks themselves.
|