Lines Matching refs:QAPISchemaType
206 element_type: QAPISchemaType, argument
250 ret_type: Optional[QAPISchemaType], argument
327 class QAPISchemaType(QAPISchemaDefinition, ABC): class
380 class QAPISchemaBuiltinType(QAPISchemaType):
412 class QAPISchemaEnumType(QAPISchemaType):
463 class QAPISchemaArrayType(QAPISchemaType):
471 self.element_type: QAPISchemaType
517 class QAPISchemaObjectType(QAPISchemaType):
644 class QAPISchemaAlternateType(QAPISchemaType):
957 self.type: QAPISchemaType # set during check()
1015 self.ret_type: Optional[QAPISchemaType] = None
1189 def lookup_type(self, name: str) -> Optional[QAPISchemaType]:
1191 if isinstance(typ, QAPISchemaType):
1200 ) -> QAPISchemaType: