Searched refs:QAPISchemaModule (Results 1 – 2 of 2) sorted by relevance
36 QAPISchemaModule,291 if QAPISchemaModule.is_user_module(name):296 ret = '' if QAPISchemaModule.is_builtin_module(name) else self._prefix297 if QAPISchemaModule.is_user_module(name):303 assert QAPISchemaModule.is_system_module(name)312 if QAPISchemaModule.is_user_module(name):335 if QAPISchemaModule.is_builtin_module(name) and not opt_builtins:349 if QAPISchemaModule.is_builtin_module(name):358 assert QAPISchemaModule.is_user_module(name)
80 self._module: Optional[QAPISchemaModule] = None103 fname = info.fname if info else QAPISchemaModule.BUILTIN_MODULE_NAME272 class QAPISchemaModule: class318 def __init__(self, sub_module: QAPISchemaModule, info: QAPISourceInfo): argument1140 self._module_dict: Dict[str, QAPISchemaModule] = OrderedDict()1142 self._make_module(QAPISchemaModule.BUILTIN_MODULE_NAME)1195 if QAPISchemaModule.is_system_module(fname):1199 def _make_module(self, fname: str) -> QAPISchemaModule:1202 self._module_dict[name] = QAPISchemaModule(name)1205 def module_by_fname(self, fname: str) -> QAPISchemaModule: