Lines Matching defs:type_system

26                                              TypeSystem *type_system) {
27 lldbassert(type_system && "type_system needs to be not NULL");
32 return type_system->GetBuiltinTypeForEncodingAndBitSize(
33 eEncodingUint, 8 * type_system->GetPointerByteSize());
36 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeBool);
43 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar);
46 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloatComplex);
49 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar)
53 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloat);
58 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeInt);
61 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloat);
67 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeUnsignedInt);
70 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar);
73 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingIEEE754,
77 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingIEEE754,
81 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 16);
84 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 32);
87 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 64);
90 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 8);
93 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 128);
96 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 16);
99 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 32);
102 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 64);
105 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 8);
118 return type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 8);
223 TypeSystem *type_system = nullptr;
232 type_system = &type_system_or_err.get();
236 ::GetCompilerTypeForFormat(m_parent_format, element_type, type_system);