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

1 2

  /frameworks/compile/mclinker/include/mcld/LD/
SymbolTableFactory.h 20 class StringTable;
51 SymbolTableIF *createInputTable(StringTable &pEntireStringTable,
52 StringTable &pDynamicStringTable,
60 SymbolTableIF *createOutputTable(StringTable &pEntireStringTable,
61 StringTable &pDynamicStringTable,
InputSymbolTable.h 34 StringTable &pEntireStringTable,
35 StringTable &pDynamicStringTable);
OutputSymbolTable.h 34 StringTable &pEntireStringTable,
35 StringTable &pDynamicStringTable);
StrSymPool.h 33 class StringTable;
  /frameworks/compile/mclinker/unittests/
StringTableTest.h 16 class StringTable;
26 * \see StringTable
44 mcld::StringTable* m_pTestee;
SymbolTableTest.h 11 #include "mcld/LD/StringTable.h"
45 mcld::StringTable m_StrTable;
StringTableTest.cpp 10 #include "mcld/LD/StringTable.h"
23 m_pTestee = new StringTable(*Pool);
61 StringTable::iterator it = m_pTestee->begin();
  /frameworks/compile/mclinker/lib/LD/
SymbolTableFactory.cpp 29 createInputTable(StringTable &pEntireStringTable,
30 StringTable &pDynamicStringTable,
42 createOutputTable(StringTable &pEntireStringTable,
43 StringTable &pDynamicStringTable,
OutputSymbolTable.cpp 19 StringTable &pEntireStringTable,
20 StringTable &pDynamicStringTable)
InputSymbolTable.cpp 19 StringTable &pEntireStringTable,
20 StringTable &pDynamicStringTable)
  /external/llvm/lib/Object/
Archive.cpp 114 const char *addr = Parent->StringTable->Data.begin()
118 if (Parent->StringTable == Parent->end_children()
119 || addr < (Parent->StringTable->Data.begin()
121 || addr > (Parent->StringTable->Data.begin()
123 + Parent->StringTable->getSize()))
196 StringTable = i;
COFFObjectFile.cpp 424 , StringTable(0)
469 StringTable = reinterpret_cast<const char *>(base())
472 if (!checkAddr(Data, ec, uintptr_t(StringTable), sizeof(ulittle32_t)))
475 StringTableSize = *reinterpret_cast<const ulittle32_t *>(StringTable);
476 if (!checkAddr(Data, ec, uintptr_t(StringTable), StringTableSize))
480 || (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0)) {
498 ret.p = reinterpret_cast<intptr_t>(StringTable);
593 Result = StringRef(StringTable + offset);
MachOObject.cpp 138 StringTable = Buffer->getBuffer().substr(SLC.StringTableOffset,
  /external/llvm/include/llvm/Object/
MachOObject.h 76 StringRef StringTable;
114 return StringTable;
Archive.h 139 child_iterator StringTable;
COFF.h 99 const char *StringTable;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
atom.c 110 } StringTable;
117 static int InitStringTable(StringTable *stable)
133 static void FreeStringTable(StringTable *stable)
179 static int AddString(StringTable *stable, const char *s)
274 static int Match(HashTable *htable, StringTable *stable, const char *s, int hashloc)
294 StringTable stable; // String table.
  /external/llvm/lib/MC/
MachObjectWriter.cpp 416 /// \param StringTable [out] - The string table data.
420 ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
434 StringTable += '\x00';
456 Entry = StringTable.size();
457 StringTable += Symbol.getName();
458 StringTable += '\x00';
492 Entry = StringTable.size();
493 StringTable += Symbol.getName();
494 StringTable += '\x00';
525 while (StringTable.size() % 4
    [all...]
WinCOFFObjectWriter.cpp 109 class StringTable {
117 StringTable();
137 StringTable Strings;
273 // StringTable class implementation
277 void StringTable::update_length() {
281 StringTable::StringTable() {
288 size_t StringTable::size() const {
294 size_t StringTable::insert(llvm::StringRef String) {
ELFObjectWriter.cpp 101 SmallString<256> StringTable;
273 /// \param StringTable [out] - The string table data.
577 assert(StringTable.size() && "Missing string table");
870 StringTable += '\x00';
939 Entry = StringTable.size();
940 StringTable += Name;
941 StringTable += '\x00';
    [all...]
  /external/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/utils/TableGen/
AsmWriterEmitter.cpp 281 SequenceToOffsetTable<std::string> StringTable;
297 StringTable.add(Str);
301 StringTable.layout();
314 Idx = StringTable.get("");
318 Idx = StringTable.get(Str);
394 StringTable.emit(O, printChar);
482 SequenceToOffsetTable<std::string> StringTable;
515 StringTable.add(AsmName);
518 StringTable.layout();
520 StringTable.emit(O, printChar)
    [all...]
AsmMatcherEmitter.cpp     [all...]
  /external/llvm/test/Scripts/
elf-dump 46 class StringTable:
195 shstrtab = StringTable(f.read(sections[e_shstrndx[0]].sh_size[0]))
202 strtab = StringTable(f.read(section.sh_size[0]))
  /external/v8/src/
gdb-jit.cc 188 class StringTable;
339 void PopulateHeader(Writer::Slot<Header> header, StringTable* strtab);
439 class StringTable : public ELFSection {
441 explicit StringTable(const char* name)
489 StringTable* strtab) {
632 sections_.Add(new StringTable(".shstrtab"));
719 StringTable* strtab = static_cast<StringTable*>(SectionAt(1));
833 void Write(Writer::Slot<SerializedLayout> s, StringTable* t) {
872 StringTable* strtab
    [all...]

Completed in 238 milliseconds

1 2