reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Symbol/ClangASTContext.cpp
  932       g_type_map.Append(ConstString("void"), eBasicTypeVoid);
  935       g_type_map.Append(ConstString("char"), eBasicTypeChar);
  936       g_type_map.Append(ConstString("signed char"), eBasicTypeSignedChar);
  937       g_type_map.Append(ConstString("unsigned char"), eBasicTypeUnsignedChar);
  938       g_type_map.Append(ConstString("wchar_t"), eBasicTypeWChar);
  939       g_type_map.Append(ConstString("signed wchar_t"), eBasicTypeSignedWChar);
  940       g_type_map.Append(ConstString("unsigned wchar_t"),
  943       g_type_map.Append(ConstString("short"), eBasicTypeShort);
  944       g_type_map.Append(ConstString("short int"), eBasicTypeShort);
  945       g_type_map.Append(ConstString("unsigned short"), eBasicTypeUnsignedShort);
  946       g_type_map.Append(ConstString("unsigned short int"),
  950       g_type_map.Append(ConstString("int"), eBasicTypeInt);
  951       g_type_map.Append(ConstString("signed int"), eBasicTypeInt);
  952       g_type_map.Append(ConstString("unsigned int"), eBasicTypeUnsignedInt);
  953       g_type_map.Append(ConstString("unsigned"), eBasicTypeUnsignedInt);
  956       g_type_map.Append(ConstString("long"), eBasicTypeLong);
  957       g_type_map.Append(ConstString("long int"), eBasicTypeLong);
  958       g_type_map.Append(ConstString("unsigned long"), eBasicTypeUnsignedLong);
  959       g_type_map.Append(ConstString("unsigned long int"),
  963       g_type_map.Append(ConstString("long long"), eBasicTypeLongLong);
  964       g_type_map.Append(ConstString("long long int"), eBasicTypeLongLong);
  965       g_type_map.Append(ConstString("unsigned long long"),
  967       g_type_map.Append(ConstString("unsigned long long int"),
  971       g_type_map.Append(ConstString("__int128_t"), eBasicTypeInt128);
  972       g_type_map.Append(ConstString("__uint128_t"), eBasicTypeUnsignedInt128);
  975       g_type_map.Append(ConstString("bool"), eBasicTypeBool);
  976       g_type_map.Append(ConstString("float"), eBasicTypeFloat);
  977       g_type_map.Append(ConstString("double"), eBasicTypeDouble);
  978       g_type_map.Append(ConstString("long double"), eBasicTypeLongDouble);
  979       g_type_map.Append(ConstString("id"), eBasicTypeObjCID);
  980       g_type_map.Append(ConstString("SEL"), eBasicTypeObjCSel);
  981       g_type_map.Append(ConstString("nullptr"), eBasicTypeNullPtr);
  982       g_type_map.Sort();
  985     return g_type_map.Find(name, eBasicTypeInvalid);