Lines Matching full:typ
945 typ: str,
953 self._type_name = typ
983 typ: str,
986 super().__init__(name, info, typ, False, ifcond)
1046 typ = self.ret_type
1047 if isinstance(typ, QAPISchemaArrayType):
1048 typ = typ.element_type
1049 if not isinstance(typ, QAPISchemaObjectType):
1092 typ = schema.resolve_type(
1094 if not isinstance(typ, QAPISchemaObjectType):
1098 % typ.describe())
1099 self.arg_type = typ
1174 typ = self.lookup_entity(name)
1175 if isinstance(typ, QAPISchemaType):
1176 return typ
1185 typ = self.lookup_type(name)
1186 if not typ:
1192 return typ
1304 typ = self.lookup_entity(name)
1305 if typ:
1306 assert isinstance(typ, QAPISchemaObjectType)
1329 typ: Union[List[str], str],
1338 if isinstance(typ, list):
1339 assert len(typ) == 1
1340 typ = self._make_array_type(typ[0], info)
1341 return QAPISchemaObjectTypeMember(name, info, typ, optional, ifcond,
1369 typ: str,
1373 if isinstance(typ, list):
1374 assert len(typ) == 1
1375 typ = self._make_array_type(typ[0], info)
1376 return QAPISchemaVariant(case, info, typ, ifcond)