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

12345678

/freebsd-12-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-12-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-12-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,
/freebsd-12-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-12-stable/contrib/bearssl/T0/
H A DBlobWriter.cs68 * Append a new byte value; it will be converted to an hexadecimal
71 internal void Append(byte b) method in class:BlobWriter
90 * Append a C expression, which will be used as is. The expression
95 internal void Append(string expr) method in class:BlobWriter
H A DCodeElement.cs55 bw.Append((byte)val);
71 bw.Append((byte)x);
95 bw.Append((byte)x);
H A DCodeElementUIntExpr.cs62 bw.Append(String.Format("T0_INT{0}({1})",
H A DConstData.cs146 sb.Append((char)x);
149 sb.Append((char)(0xD800 + (x >> 10)));
150 sb.Append((char)(0xDC00 + (x & 0x3FF)));
195 bw.Append(buf[i]);
/freebsd-12-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-12-stable/contrib/llvm-project/lldb/source/Target/
H A DJITLoader.cpp26 list.Append(std::move(instance_sp));
/freebsd-12-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);
/freebsd-12-stable/contrib/googletest/googletest/test/
H A Dgtest_assert_by_exception_test.cc106 testing::UnitTest::GetInstance()->listeners().Append(new ThrowListener);
/freebsd-12-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...]

Completed in 202 milliseconds

12345678