Home
last modified time | relevance | path

Searched refs:Append (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBValueList.cpp37 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append() function in ValueListImpl
39 void Append(const ValueListImpl &list) { in Append() function in ValueListImpl
41 Append(val); in Append()
131 void SBValueList::Append(const SBValue &val_obj) { in Append() function in SBValueList
135 m_opaque_up->Append(val_obj); in Append()
138 void SBValueList::Append(lldb::ValueObjectSP &val_obj_sp) { in Append() function in SBValueList
141 m_opaque_up->Append(SBValue(val_obj_sp)); in Append()
145 void SBValueList::Append(const lldb::SBValueList &value_list) { in Append() function in SBValueList
150 m_opaque_up->Append(*value_list); in Append()
H A DSBMemoryRegionInfoList.cpp37 void Append(const MemoryRegionInfo &sb_region) { in Append() function in MemoryRegionInfoListImpl
41 void Append(const MemoryRegionInfoListImpl &list) { in Append() function in MemoryRegionInfoListImpl
45 Append(val); in Append()
132 void SBMemoryRegionInfoList::Append(SBMemoryRegionInfo &sb_region) { in Append() function in SBMemoryRegionInfoList
135 m_opaque_up->Append(sb_region.ref()); in Append()
138 void SBMemoryRegionInfoList::Append(SBMemoryRegionInfoList &sb_region_list) { in Append() function in SBMemoryRegionInfoList
141 m_opaque_up->Append(*sb_region_list); in Append()
H A DSBSymbolContextList.cpp67 void SBSymbolContextList::Append(SBSymbolContext &sc) { in Append() function in SBSymbolContextList
71 m_opaque_up->Append(*sc); in Append()
74 void SBSymbolContextList::Append(SBSymbolContextList &sc_list) { in Append() function in SBSymbolContextList
78 m_opaque_up->Append(*sc_list); in Append()
H A DSBTypeEnumMember.cpp116 Append(const_cast<SBTypeEnumMemberList &>(rhs).GetTypeEnumMemberAtIndex(i)); in SBTypeEnumMemberList()
138 Append( in operator =()
144 void SBTypeEnumMemberList::Append(SBTypeEnumMember enum_member) { in Append() function in SBTypeEnumMemberList
148 m_opaque_up->Append(enum_member.m_opaque_sp); in Append()
H A DSBModuleSpec.cpp178 void SBModuleSpecList::Append(const SBModuleSpec &spec) { in Append() function in SBModuleSpecList
181 m_opaque_up->Append(*spec.m_opaque_up); in Append()
184 void SBModuleSpecList::Append(const SBModuleSpecList &spec_list) { in Append() function in SBModuleSpecList
187 m_opaque_up->Append(*spec_list.m_opaque_up); in Append()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash5.C34 virtual void Append(const T&) = 0;
35 virtual void operator+=(const T& a) { Append(a); }
46 void Append(const Tp& tp) { Append(*tp); } in Append() function
84 inline void Append(const T& a) in Append() function
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/compress/
H A Doneshot.pl310 title "$TopType - From Buff to Buff content '$disp_content' Append $append" ;
313 ok &$Func(\$buffer, \$output, Append => $append), ' Compressed ok' ;
323 title "$TopType - From Buff to Array Ref content '$disp_content' Append $append" ;
326 ok &$Func(\$buffer, \@output, Append => $append), ' Compressed ok' ;
336 title "$TopType - From Array Ref to Array Ref content '$disp_content' Append $append" ;
342 ok &$Func(\@input, \@output, Append => $append), ' Compressed ok' ;
351 title "$TopType - From Buff to Filename content '$disp_content' Append $append" ;
357 ok &$Func(\$buffer, $out_file, Append => $append), ' Compressed ok' ;
366 title "$TopType - From Buff to Handle content '$disp_content' Append $append" ;
375 ok &$Func(\$buffer, $of, AutoClose => 1, Append
[all...]
H A Dgeneric.pl32 -Append => 1
174 ok my $x = $UncompressClass->can('new')->( $UncompressClass, $name, -Append => 1 );
258 ok $x = $UncompressClass->can('new')->( $UncompressClass, $fh1, -Append => 1 );
305 ok $x = $UncompressClass->can('new')->( $UncompressClass, *FH, -Append => 1, Transparent => 0 )
360 $x = $UncompressClass->can('new')->( $UncompressClass, '-', Append => 1, Transparent => 0 )
408 ok $x = $UncompressClass->can('new')->( $UncompressClass, \$buffer, Append => 1) ;
440 ok $x = $UncompressClass->can('new')->( $UncompressClass, \$buffer, Append => 1) ;
532 ok my $x = $UncompressClass->can('new')->( $UncompressClass, $fh1, Append => 1 );
570 ok my $x = $UncompressClass->can('new')->( $UncompressClass, \$compressed, Append => 1) ;
1035 title "Read Tests - buf length $bufsize, Transparent $trans, Append
[all...]
H A Dzlib-generic.pl37 -Append => 1
86 ok my $x = $UncompressClass->can('new')->( $UncompressClass, $name, -Append => 1 );
116 ok $x = $UncompressClass->can('new')->( $UncompressClass, \$buffer, Append => 1) ;
H A Danyunc.pl58 Append => 1 );
76 Append =>1 );
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/tests/unit/
H A Dsegmented_array_test.cpp37 ASSERT_NE(data.Append(TestData{0, 0}), nullptr); in TEST()
38 ASSERT_NE(data.Append(TestData{1, 1}), nullptr); in TEST()
46 ASSERT_NE(data.Append(TestData{0, 1}), nullptr); in TEST()
58 ASSERT_NE(data.Append(TestData{I, I + 1}), nullptr); in TEST()
206 auto P = Data.Append({i, &Dummy}); in TEST()
243 auto P = Data->Append({i, &Dummy}); in TEST()
265 auto P = Data->Append({i, &Dummy}); in TEST()
282 auto P = Data->Append({i, &Dummy}); in TEST()
304 auto P = Data->Append({i, &Dummy}); in TEST()
321 ASSERT_NE(A.Append(&I), nullptr); in TEST()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBValueList.h32 void Append(const lldb::SBValue &val_obj);
34 void Append(const lldb::SBValueList &value_list);
83 void Append(lldb::ValueObjectSP &val_obj_sp);
H A DSBMemoryRegionInfoList.h35 void Append(lldb::SBMemoryRegionInfo &region);
37 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);
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DInputFile.cpp149 static void formatInternal(LinePrinter &Printer, bool Append, Args &&...args) { in formatInternal() argument
150 if (Append) in formatInternal()
259 bool Append) const { in formatFromFileName()
262 formatInternal(Printer, Append, "- (no checksum) {0}", File); in formatFromFileName()
266 formatInternal(Printer, Append, "- ({0}: {1}) {2}", in formatFromFileName()
273 bool Append) const { in formatFromChecksumsOffset()
275 formatInternal(Printer, Append, "(unknown file name offset {0})", Offset); in formatFromChecksumsOffset()
281 formatInternal(Printer, Append, "(unknown file name offset {0})", Offset); in formatFromChecksumsOffset()
288 formatInternal(Printer, Append, "(unknown file name offset {0})", Offset); in formatFromChecksumsOffset()
293 formatInternal(Printer, Append, "{0} (no checksum)", *ExpectedFile); in formatFromChecksumsOffset()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DSymtab.cpp319 name_to_index.Append(name, value); in InitNameIndexes()
326 name_to_index.Append(stripped, value); in InitNameIndexes()
341 name_to_index.Append(name, value); in InitNameIndexes()
348 name_to_index.Append(name, value); in InitNameIndexes()
356 selector_to_index.Append(variant.GetName(), value); in InitNameIndexes()
358 name_to_index.Append(variant.GetName(), value); in InitNameIndexes()
360 method_to_index.Append(variant.GetName(), value); in InitNameIndexes()
362 basename_to_index.Append(variant.GetName(), value); in InitNameIndexes()
401 basename_to_index.Append(entry); in RegisterMangledNameEntry()
405 name_to_index.Append(entry); in RegisterMangledNameEntry()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp30 m_map.Append(name, die_ref); in Insert()
87 void NameToDIE::Append(const NameToDIE &other) { in Append() function in NameToDIE
90 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i), in Append()
111 m_map.Append(ConstString(str), *die_ref); in Decode()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBMemoryRegionInfoList.i34 Append (lldb::SBMemoryRegionInfo &region);
37 Append (lldb::SBMemoryRegionInfoList &region_list);
H A DSBModuleSpec.i114 Append (const lldb::SBModuleSpec &spec);
117 Append (const lldb::SBModuleSpecList &spec_list);
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp78 module_list.Append(module_sp); in OnLoadModule()
92 module_list.Append(module_sp); in OnUnloadModule()
144 module_list.Append(executable); in DidAttach()
164 module_list.Append(executable); in DidLaunch()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp135 specs.Append(module_spec); in GetModuleSpecifications()
139 specs.Append(module_spec); in GetModuleSpecifications()
143 specs.Append(module_spec); in GetModuleSpecifications()
147 specs.Append(module_spec); in GetModuleSpecifications()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp135 module_sp->GetSourceMappingList().Append( in CreateInstance()
239 module_sp->GetSourceMappingList().Append( in CreateInstance()
254 module_sp->GetSourceMappingList().Append( in CreateInstance()
270 module_sp->GetSourceMappingList().Append( in CreateInstance()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DValueObjectList.h27 void Append(const lldb::ValueObjectSP &val_obj_sp);
29 void Append(const ValueObjectList &valobj_list);
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_mac.cpp38 void Append(thread_t thread);
70 suspended_threads_list.Append(threads[i]); in RunThread()
135 void SuspendedThreadsListMac::Append(thread_t thread) { in Append() function in __sanitizer::SuspendedThreadsListMac

12345678910>>...12