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

References

tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
   95     m_enumerations.Append(const_enumerator_name, enumerator_info);
tools/lldb/source/Interpreter/OptionValueProperties.cpp
   55     m_name_to_index.Append(ConstString(property.GetName()), m_properties.size());
   74   m_name_to_index.Append(name, m_properties.size());
tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
  159       m_object_name_to_index_map.Append(obj.ar_name, obj_idx);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
 3650             src_name_to_die_artificial.Append(src_const_name, src_die);
 3652             src_name_to_die.Append(src_const_name, src_die);
 3669             dst_name_to_die_artificial.Append(dst_const_name, dst_die);
 3671             dst_name_to_die.Append(dst_const_name, dst_die);
tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
   26   m_map.Append(name, die_ref);
   75     m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i),
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
 1226         m_func_method_names.Append(ConstString(name), uid);
 1234           m_func_base_names.Append(ConstString(basename), uid);
 1236           m_func_base_names.Append(ConstString(name), uid);
 1240           m_func_full_names.Append(ConstString(demangled_name), uid);
 1248           m_func_base_names.Append(ConstString(basename), uid);
 1250           m_func_base_names.Append(ConstString(name), uid);
 1253           m_func_full_names.Append(ConstString(name), uid);
 1256             m_func_full_names.Append(ConstString(demangled_name), uid);
 1257             m_func_base_names.Append(ConstString(demangled_name), uid);
 1260           m_func_full_names.Append(ConstString(demangled_name), uid);
 1262           m_func_full_names.Append(ConstString(name), uid);
 1283           m_func_full_names.Append(ConstString(name), addr_ids[vm_addr]);
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);
tools/lldb/source/Symbol/Symtab.cpp
  286         m_name_to_index.Append(name, value);
  293           m_name_to_index.Append(stripped, value);
  306         m_name_to_index.Append(name, value);
  313           m_name_to_index.Append(name, value);
  320           m_selector_to_index.Append(objc_method.GetSelector(), value);
  324             m_name_to_index.Append(objc_method_no_category, value);
  432           name_to_index_map.Append(name, value);
  437           name_to_index_map.Append(name, value);
tools/lldb/unittests/Core/UniqueCStringMapTest.cpp
   39   Map.Append(Foo, NoDefault(42));