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

1234567

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBMemoryRegionInfoList.i28 Append (lldb::SBMemoryRegionInfo &region);
31 Append (lldb::SBMemoryRegionInfoList &region_list);
H A DSBFileSpecList.i27 Append (const SBFileSpec &sb_file);
H A DSBModuleSpec.i111 Append (const lldb::SBModuleSpec &spec);
114 Append (const lldb::SBModuleSpecList &spec_list);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValueList.h32 void Append(const lldb::SBValue &val_obj);
34 void Append(const lldb::SBValueList &value_list);
56 void Append(lldb::ValueObjectSP &val_obj_sp);
H A DSBMemoryRegionInfoList.h32 void Append(lldb::SBMemoryRegionInfo &region);
34 void Append(lldb::SBMemoryRegionInfoList &region_list);
H A DSBSymbolContextList.h38 void Append(lldb::SBSymbolContext &sc);
40 void Append(lldb::SBSymbolContextList &sc_list);
H A DSBModuleSpec.h102 void Append(const SBModuleSpec &spec);
104 void Append(const SBModuleSpecList &spec_list);
H A DSBFileSpecList.h31 void Append(const SBFileSpec &sb_file);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBSymbolContextList.cpp73 void SBSymbolContextList::Append(SBSymbolContext &sc) { function in class:SBSymbolContextList
74 LLDB_RECORD_METHOD(void, SBSymbolContextList, Append,
78 m_opaque_up->Append(*sc);
81 void SBSymbolContextList::Append(SBSymbolContextList &sc_list) { function in class:SBSymbolContextList
82 LLDB_RECORD_METHOD(void, SBSymbolContextList, Append,
86 m_opaque_up->Append(*sc_list);
133 LLDB_REGISTER_METHOD(void, SBSymbolContextList, Append,
135 LLDB_REGISTER_METHOD(void, SBSymbolContextList, Append,
H A DSBMemoryRegionInfoList.cpp38 void Append(const MemoryRegionInfo &sb_region) { function in class:MemoryRegionInfoListImpl
42 void Append(const MemoryRegionInfoListImpl &list) { function in class:MemoryRegionInfoListImpl
46 Append(val);
120 void SBMemoryRegionInfoList::Append(SBMemoryRegionInfo &sb_region) { function in class:SBMemoryRegionInfoList
121 LLDB_RECORD_METHOD(void, SBMemoryRegionInfoList, Append,
124 m_opaque_up->Append(sb_region.ref());
127 void SBMemoryRegionInfoList::Append(SBMemoryRegionInfoList &sb_region_list) { function in class:SBMemoryRegionInfoList
128 LLDB_RECORD_METHOD(void, SBMemoryRegionInfoList, Append,
131 m_opaque_up->Append(*sb_region_list);
159 LLDB_REGISTER_METHOD(void, SBMemoryRegionInfoList, Append,
[all...]
H A DSBValueList.cpp35 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } function in class:ValueListImpl
37 void Append(const ValueListImpl &list) { function in class:ValueListImpl
39 Append(val);
127 void SBValueList::Append(const SBValue &val_obj) { function in class:SBValueList
128 LLDB_RECORD_METHOD(void, SBValueList, Append, (const lldb::SBValue &),
132 m_opaque_up->Append(val_obj);
135 void SBValueList::Append(lldb::ValueObjectSP &val_obj_sp) { function in class:SBValueList
138 m_opaque_up->Append(SBValue(val_obj_sp));
142 void SBValueList::Append(const lldb::SBValueList &value_list) { function in class:SBValueList
143 LLDB_RECORD_METHOD(void, SBValueList, Append, (cons
[all...]
H A DSBFileSpecList.cpp53 void SBFileSpecList::Append(const SBFileSpec &sb_file) { function in class:SBFileSpecList
54 LLDB_RECORD_METHOD(void, SBFileSpecList, Append, (const lldb::SBFileSpec &),
57 m_opaque_up->Append(sb_file.ref());
138 LLDB_REGISTER_METHOD(void, SBFileSpecList, Append,
H A DSBModuleSpec.cpp186 void SBModuleSpecList::Append(const SBModuleSpec &spec) { function in class:SBModuleSpecList
187 LLDB_RECORD_METHOD(void, SBModuleSpecList, Append,
190 m_opaque_up->Append(*spec.m_opaque_up);
193 void SBModuleSpecList::Append(const SBModuleSpecList &spec_list) { function in class:SBModuleSpecList
194 LLDB_RECORD_METHOD(void, SBModuleSpecList, Append,
197 m_opaque_up->Append(*spec_list.m_opaque_up);
284 LLDB_REGISTER_METHOD(void, SBModuleSpecList, Append,
286 LLDB_REGISTER_METHOD(void, SBModuleSpecList, Append,
H A DSBTypeEnumMember.cpp123 Append(const_cast<SBTypeEnumMemberList &>(rhs).GetTypeEnumMemberAtIndex(i));
148 Append(
154 void SBTypeEnumMemberList::Append(SBTypeEnumMember enum_member) { function in class:SBTypeEnumMemberList
155 LLDB_RECORD_METHOD(void, SBTypeEnumMemberList, Append,
159 m_opaque_up->Append(enum_member.m_opaque_sp);
225 LLDB_REGISTER_METHOD(void, SBTypeEnumMemberList, Append,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectList.h27 void Append(const lldb::ValueObjectSP &val_obj_sp);
29 void Append(const ValueObjectList &valobj_list);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DJITLoaderList.h27 void Append(const lldb::JITLoaderSP &jit_loader_sp);
H A DPathMappingList.h35 void Append(ConstString path, ConstString replacement,
38 void Append(const PathMappingList &rhs, bool notify);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DJITLoader.cpp26 list.Append(std::move(instance_sp));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp26 m_map.Append(name, die_ref);
72 void NameToDIE::Append(const NameToDIE &other) { function in class:NameToDIE
75 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i),
H A DNameToDIE.h31 void Append(const NameToDIE &other);
H A DUniqueDWARFASTType.h63 void Append(const UniqueDWARFASTType &entry) { function in class:UniqueDWARFASTTypeList
83 m_collection[name.GetCString()].Append(entry);
H A DDWARFDebugAranges.cpp52 m_aranges.Append(RangeToDIE::Entry(descriptor.address,
77 m_aranges.Append(RangeToDIE::Entry(low_pc, high_pc - low_pc, offset));
H A DDebugNamesDWARFIndex.cpp69 void DebugNamesDWARFIndex::Append(const DebugNames::Entry &entry, function in class:DebugNamesDWARFIndex
95 Append(entry, offsets);
114 Append(*entry_or, offsets);
136 Append(*entry_or, offsets);
192 Append(entry, offsets);
203 Append(entry, offsets);
213 Append(entry, offsets);
258 Append(*entry_or, offsets);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.cpp123 static void formatInternal(LinePrinter &Printer, bool Append, Args &&... args) { argument
124 if (Append)
213 bool Append) const {
216 formatInternal(Printer, Append, "- (no checksum) {0}", File);
220 formatInternal(Printer, Append, "- ({0}: {1}) {2}",
227 bool Append) const {
229 formatInternal(Printer, Append, "(unknown file name offset {0})", Offset);
235 formatInternal(Printer, Append, "(unknown file name offset {0})", Offset);
242 formatInternal(Printer, Append, "(unknown file name offset {0})", Offset);
247 formatInternal(Printer, Append, "{
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_mac.cpp38 void Append(thread_t thread);
70 suspended_threads_list.Append(threads[i]);
131 void SuspendedThreadsListMac::Append(thread_t thread) { function in class:__sanitizer::SuspendedThreadsListMac

Completed in 203 milliseconds

1234567