HomeSort by relevance Sort by last modified time
    Searched defs:StringTable (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/src/debug/pe/
string.go 22 // StringTable is a COFF string table.
23 type StringTable []byte
25 func readStringTable(fh *FileHeader, r io.ReadSeeker) (StringTable, error) {
50 return StringTable(buf), nil
56 func (st StringTable) String(start uint32) (string, error) {
  /prebuilts/go/linux-x86/src/debug/pe/
string.go 22 // StringTable is a COFF string table.
23 type StringTable []byte
25 func readStringTable(fh *FileHeader, r io.ReadSeeker) (StringTable, error) {
50 return StringTable(buf), nil
56 func (st StringTable) String(start uint32) (string, error) {
  /external/mesa3d/src/amd/common/
sid_tables.py 33 class StringTable:
203 strings = StringTable()
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
Archive.h 84 child_iterator StringTable;
MachOObject.h 76 StringRef StringTable;
114 return StringTable;
COFF.h 81 const char *StringTable;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 1 //===- StringTable.h - PDB String Table -------------------------*- C++ -*-===//
27 class StringTable {
29 StringTable();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTable.h 1 //===- StringTable.h - PDB String Table -------------------------*- C++ -*-===//
27 class StringTable {
29 StringTable();
  /external/freetype/src/tools/
glnames.py     [all...]
  /external/llvm/include/llvm/MC/
StringTableBuilder.h 25 SmallString<256> StringTable;
53 return StringTable;
69 return !StringTable.empty();
MCCodeView.h 184 StringMap<unsigned> StringTable;
  /external/tensorflow/tensorflow/python/profiler/
pprof_profiler.py 63 class StringTable(object):
111 string_table: A `StringTable` object.
216 string_table: A `StringTable` object.
270 self._string_table = StringTable()
  /external/google-breakpad/src/common/linux/
synth_elf.h 64 class StringTable : public Section {
66 StringTable(Endianness endianness = kUnsetEndian)
138 StringTable section_header_strings_;
163 // table is the StringTable that contains symbol names. The caller
166 SymbolTable(Endianness endianness, size_t addr_size, StringTable& table);
177 StringTable& table_;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
PDBFile.h 143 std::unique_ptr<NameHashTable> StringTable;
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCMachObjectWriter.h 101 SmallString<256> StringTable;
222 /// \param StringTable [out] - The string table data.
225 void ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
  /external/llvm/include/llvm/Object/
Archive.h 231 StringRef StringTable;
  /external/llvm/lib/DebugInfo/CodeView/
SymbolDumper.cpp 355 StringRef StringTable = ObjDelegate->getStringTable();
357 if (ProgramStringTableOffset >= StringTable.size())
360 StringTable.drop_front(ProgramStringTableOffset).split('\0').first;
374 StringRef StringTable = ObjDelegate->getStringTable();
376 if (ProgramStringTableOffset >= StringTable.size())
379 StringTable.drop_front(ProgramStringTableOffset).split('\0').first;
  /external/llvm/lib/Object/
ArchiveWriter.cpp 293 StringRef StringTable = NameOS.str();
295 print32(Out, Kind, StringTable.size()); // byte count of the string table
296 Out << StringTable;
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 37 StringTable.append(4, char(0));
134 unsigned Index = StringTable.size();
135 StringTable.append(Str.begin(), Str.end());
136 StringTable.push_back(0);
146 std::string StringTable;
233 if (NumberOfSymbols > 0 || CP.StringTable.size() > 4)
238 *reinterpret_cast<support::ulittle32_t *>(&CP.StringTable[0])
239 = CP.StringTable.size();
531 OS.write(&CP.StringTable[0], CP.StringTable.size())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.h 122 SmallString<256> StringTable;
282 /// \param StringTable [out] - The string table data.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCCodeView.h 282 StringMap<unsigned> StringTable;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
Archive.h 247 StringRef getStringTable() const { return StringTable; }
256 StringRef StringTable;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCCodeView.h 282 StringMap<unsigned> StringTable;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Object/
Archive.h 266 StringRef getStringTable() const { return StringTable; }
275 StringRef StringTable;
WindowsResource.h 119 return StringTable;
179 std::vector<std::vector<UTF16>> StringTable;

Completed in 440 milliseconds

1 2 3 4 5 6 7 8