Searched refs:Append (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBValueList.h36 Append (const lldb::SBValue &val_obj);
39 Append (const lldb::SBValueList& value_list);
66 Append (lldb::ValueObjectSP& val_obj_sp);
H A DSBSymbolContextList.h43 Append (lldb::SBSymbolContext &sc);
46 Append (lldb::SBSymbolContextList &sc_list);
H A DSBModuleSpec.h128 Append (const SBModuleSpec &spec);
131 Append (const SBModuleSpecList &spec_list);
H A DSBFileSpecList.h36 Append (const SBFileSpec &sb_file);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBSymbolContextList.cpp72 SBSymbolContextList::Append(SBSymbolContext &sc) function in class:SBSymbolContextList
75 m_opaque_ap->Append(*sc);
79 SBSymbolContextList::Append(SBSymbolContextList &sc_list) function in class:SBSymbolContextList
82 m_opaque_ap->Append(*sc_list);
H A DSBValueList.cpp51 Append (const lldb::SBValue& sb_value) function in class:ValueListImpl
57 Append (const ValueListImpl& list) function in class:ValueListImpl
60 Append (val);
177 SBValueList::Append (const SBValue &val_obj) function in class:SBValueList
180 m_opaque_ap->Append (val_obj);
184 SBValueList::Append (lldb::ValueObjectSP& val_obj_sp) function in class:SBValueList
189 m_opaque_ap->Append (SBValue(val_obj_sp));
194 SBValueList::Append (const lldb::SBValueList& value_list) function in class:SBValueList
199 m_opaque_ap->Append (*value_list);
H A DSBModuleSpec.cpp183 SBModuleSpecList::Append (const SBModuleSpec &spec) function in class:SBModuleSpecList
185 m_opaque_ap->Append (*spec.m_opaque_ap);
189 SBModuleSpecList::Append (const SBModuleSpecList &spec_list) function in class:SBModuleSpecList
191 m_opaque_ap->Append (*spec_list.m_opaque_ap);
H A DSBFileSpecList.cpp66 SBFileSpecList::Append (const SBFileSpec &sb_file) function in class:SBFileSpecList
68 m_opaque_ap->Append (sb_file.ref());
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObjectList.h45 Append (const lldb::ValueObjectSP &val_obj_sp);
48 Append (const ValueObjectList &valobj_list);
H A DFileSpecList.h67 /// Append a FileSpec object to the list.
75 Append (const FileSpec &file);
78 /// Append a FileSpec object if unique.
H A DModuleSpec.h481 Append (const ModuleSpec &spec) function in class:lldb_private::ModuleSpecList
488 Append (const ModuleSpecList &rhs) function in class:lldb_private::ModuleSpecList
556 matching_list.Append (spec);
566 matching_list.Append (spec);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.h28 Append (const DWARFDebugInfoEntry *die);
H A DDWARFDIECollection.cpp33 DWARFDIECollection::Append (const DWARFDebugInfoEntry *die) function in class:DWARFDIECollection
H A DDWARFDebugAranges.cpp77 m_aranges.Append(RangeToDIE::Entry (descriptor.address, descriptor.length, cu_offset));
132 m_aranges.Append(RangeToDIE::Entry (low_pc, high_pc - low_pc, offset));
H A DUniqueDWARFASTType.h114 Append (const UniqueDWARFASTType &entry) function in class:UniqueDWARFASTTypeList
148 m_collection[name.GetCString()].Append (entry);
H A DNameToDIE.cpp34 m_map.Append(name.GetCString(), die_offset);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPathMappingList.h47 Append (const ConstString &path, const ConstString &replacement, bool notify);
50 Append (const PathMappingList &rhs, bool notify);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DFileSpecList.cpp51 // Append the "file_spec" to the end of the file spec list.
54 FileSpecList::Append(const FileSpec &file_spec) function in class:FileSpecList
204 matches.Append (path_spec);
H A DValueObjectList.cpp49 ValueObjectList::Append (const ValueObjectSP &val_obj_sp) function in class:ValueObjectList
55 ValueObjectList::Append (const ValueObjectList &valobj_list) function in class:ValueObjectList
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp616 g_type_map.Append(ConstString("void").GetCString(), eBasicTypeVoid);
619 g_type_map.Append(ConstString("char").GetCString(), eBasicTypeChar);
620 g_type_map.Append(ConstString("signed char").GetCString(), eBasicTypeSignedChar);
621 g_type_map.Append(ConstString("unsigned char").GetCString(), eBasicTypeUnsignedChar);
622 g_type_map.Append(ConstString("wchar_t").GetCString(), eBasicTypeWChar);
623 g_type_map.Append(ConstString("signed wchar_t").GetCString(), eBasicTypeSignedWChar);
624 g_type_map.Append(ConstString("unsigned wchar_t").GetCString(), eBasicTypeUnsignedWChar);
626 g_type_map.Append(ConstString("short").GetCString(), eBasicTypeShort);
627 g_type_map.Append(ConstString("short int").GetCString(), eBasicTypeShort);
628 g_type_map.Append(ConstStrin
[all...]
H A DSymtab.cpp307 m_name_to_index.Append (entry);
332 m_method_to_index.Append (entry);
342 m_method_to_index.Append (entry);
351 mangled_name_to_index.Append (entry);
358 m_basename_to_index.Append(entry);
368 m_name_to_index.Append (entry);
376 m_selector_to_index.Append (entry);
382 m_name_to_index.Append (entry);
399 m_method_to_index.Append (entry);
405 m_method_to_index.Append (entr
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptions.h408 /// Append options from a OptionGroup class.
410 /// Append all options from \a group using the exact same option groups
418 Append (OptionGroup* group);
421 /// Append options from a OptionGroup class.
423 /// Append options from \a group that have a usage mask that has any bits
443 Append (OptionGroup* group,
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymbolContext.h430 /// Append a new symbol context to the list.
436 Append (const SymbolContext& sc);
439 Append (const SymbolContextList& sc_list);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueFileSpecLIst.cpp73 m_current_value.Append(file);
95 m_current_value.Append(file);
H A DOptionValuePathMappings.cpp65 m_path_mappings.Append(a, b, m_notify_changes);
97 m_path_mappings.Append(a, b, m_notify_changes);

Completed in 205 milliseconds

12345