/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | DWARF.cpp | 48 m->Data = toStringRef(sec->contentMaybeDecompress()); in LLDDwarfObj() 54 abbrevSection = toStringRef(sec->contentMaybeDecompress()); in LLDDwarfObj() 56 strSection = toStringRef(sec->contentMaybeDecompress()); in LLDDwarfObj() 58 lineStrSection = toStringRef(sec->contentMaybeDecompress()); in LLDDwarfObj() 70 infoSection.Data = toStringRef(sec->contentMaybeDecompress()); in LLDDwarfObj()
|
H A D | SymbolTable.cpp | 277 found |= assignExactVersion({(pat.name + "@" + v.name).toStringRef(buf), in scanVersionScript() 298 assignWildcardVersion({(pat.name + "@" + ver).toStringRef(buf), in scanVersionScript()
|
H A D | EhFrame.cpp | 80 StringRef s = toStringRef(d.slice(0, end - d.begin())); in readString()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 427 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); in append() 428 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); in append() 429 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); in append() 430 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); in append() 485 StringRef ext = extension.toStringRef(ext_storage); in replace_extension() 618 StringRef p = path.toStringRef(path_storage); in has_root_name() 625 StringRef p = path.toStringRef(path_storage); in has_root_directory() 632 StringRef p = path.toStringRef(path_storage); in has_root_path() 639 StringRef p = path.toStringRef(path_storage); in has_relative_path() 646 StringRef p = path.toStringRef(path_storage); in has_filename() [all …]
|
H A D | MemoryBuffer.cpp | 80 StringRef NameRef = Alloc.Name.toStringRef(NameBuf); in operator new() 168 StringRef NameRef = Filename.toStringRef(NameBuf); in getFileOrSTDIN() 320 StringRef NameRef = BufferName.toStringRef(NameBuf); in getNewUninitMemBuffer()
|
H A D | Twine.cpp | 29 return toStringRef(Vec).str(); in str()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | ObjectFileBreakpad.cpp | 69 auto text = toStringRef(data_sp->GetData()); in CreateInstance() 96 auto text = toStringRef(data_sp->GetData()); in GetModuleSpecifications() 133 llvm::StringRef text = toStringRef(m_data.GetData()); in CreateSections()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | SourceLocationSpec.cpp | 60 s << "check inlines = " << llvm::toStringRef(m_check_inlines); in Dump() 61 s << ", exact match = " << llvm::toStringRef(m_exact_match); in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/ |
H A D | ObjectFileCOFF.cpp | 26 return identify_magic(toStringRef(data->GetData())) == in IsCOFFObjectFile() 80 MemoryBufferRef buffer{toStringRef(data_sp->GetData()), in CreateInstance() 113 MemoryBufferRef buffer{toStringRef(data_sp->GetData()), in GetModuleSpecifications()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
H A D | LVDWARFReader.cpp | 315 CompileUnit->setCompilationDirectory(dwarf::toStringRef(FormValue)); in processOneAttribute() 322 llvm::toHex(llvm::toStringRef(Expr), /*LowerCase=*/true)); in processOneAttribute() 339 CurrentElement->setValue(dwarf::toStringRef(FormValue)); in processOneAttribute() 370 CurrentElement->setName(dwarf::toStringRef(FormValue)); in processOneAttribute() 374 CurrentElement->setLinkageName(dwarf::toStringRef(FormValue)); in processOneAttribute() 378 CurrentElement->setProducer(dwarf::toStringRef(FormValue)); in processOneAttribute() 647 StringRef Name(dwarf::toStringRef(LinkageDIE)); in processOneDie() 733 std::string File = transformPath(dwarf::toStringRef(Entry.Name)); in createLineAndFileRecords()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
H A D | DWARFLinkerCompileUnit.cpp |
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Dwarf.cpp | 37 *s = toStringRef(isec->data); in create()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ |
H A D | CommonConfig.cpp | 46 ("^" + Pattern.ltrim('^').rtrim('$') + "$").toStringRef(Data))); in create()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeSourceFile.cpp | 40 return toStringRef(Checksum.Checksum).str(); in getChecksum()
|
H A D | NativeEnumInjectedSources.cpp | 33 Result += toStringRef(Data); in readStreamData()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 55 inline StringRef toStringRef(bool B) { return StringRef(B ? "true" : "false"); } in toStringRef() function 58 inline StringRef toStringRef(ArrayRef<uint8_t> Input) { in toStringRef() function 61 inline StringRef toStringRef(ArrayRef<char> Input) { in toStringRef() function
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningFilesystem.cpp | 292 StringRef Filename = Path.toStringRef(OwnedFilename); in status() 363 StringRef Filename = Path.toStringRef(OwnedFilename); in openFileForRead() 378 StringRef OriginalFilename = Path.toStringRef(OwnedFilename); in getRealPath()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFContext.cpp | 138 name, llvm::MemoryBuffer::getMemBuffer(toStringRef(data.GetData()), in GetAsLLVM()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
H A D | DWARFLinkerCompileUnit.h |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
H A D | ObjectFileWasm.cpp | 43 if (llvm::identify_magic(toStringRef(data_sp->GetData())) != in ValidateModuleHeader() 75 llvm::StringRef str = toStringRef(llvm::ArrayRef(str_storage)); in GetWasmString()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MetaRenamer.cpp | 208 (Twine("struct.") + renamer.newName()).toStringRef(NameStorage)); in MetaRename()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | RecordStreamer.cpp | 214 (Split.first + Separator + Split.second).toStringRef(NewName); in flushSymverDirectives()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Utils.cpp | 34 StringRef Ext = Extension.toStringRef(Storage); in replace_extension()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
H A D | MinidumpParser.cpp | 32 llvm::MemoryBufferRef(toStringRef(data_sp->GetData()), "minidump")); in Create() 266 llvm::toStringRef(data), in CreateRegionsCacheFromLinuxMaps()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCContext.cpp | 215 StringRef NameRef = Name.toStringRef(NameSV); in getOrCreateSymbol() 415 StringRef NameRef = Name.toStringRef(NameSV); in lookupSymbol() 605 StringRef UniqueMapKey = Section.toStringRef(Buffer); in getELFSection()
|