Home | History | Annotate | Download | only in scripts

Lines Matching refs:data_type

125     data_type = None
136 data_type = type_node_to_type(child)
143 return IdlAttribute(data_type=data_type, extended_attributes=extended_attributes, is_nullable=is_nullable, is_read_only=is_read_only, is_static=is_static, name=name)
157 data_type = type_node_inner_to_type(type_node)
170 return IdlConstant(data_type=data_type, extended_attributes=extended_attributes, name=name, value=value)
201 return IdlOperation(name=name, data_type=return_type, extended_attributes=extended_attributes, is_static=is_static, arguments=arguments, specials=specials)
221 data_type = None
232 data_type = type_node_to_type(child)
244 return IdlArgument(name=name, data_type=data_type, extended_attributes=extended_attributes, is_nullable=is_nullable, is_optional=is_optional, is_variadic=is_variadic)
257 data_type = type_node_to_type(type_node)
265 return IdlCallbackFunction(name=name, data_type=data_type, arguments=arguments)
294 return IdlOperation(name=name, data_type=return_type, extended_attributes=extended_attributes)
324 data_type = None
331 data_type = type_node_to_type(child)
338 return IdlTypedef(data_type=data_type, extended_attributes=extended_attributes)
480 data_type = type_node_inner_to_type(type_node_child)
487 data_type += '[]'
489 return data_type