/frameworks/compile/mclinker/unittests/ |
StringTableTest.h | 15 class StringTable; 24 * \see StringTable 41 mcld::StringTable* m_pTestee;
|
SymbolTableTest.h | 11 #include "mcld/LD/StringTable.h" 42 mcld::StringTable m_StrTable;
|
StringTableTest.cpp | 10 #include "mcld/LD/StringTable.h" 21 m_pTestee = new StringTable(*Pool); 56 StringTable::iterator it = m_pTestee->begin();
|
/external/llvm/include/llvm/MC/ |
StringTableBuilder.h | 25 SmallString<256> StringTable; 46 return StringTable; 59 return !StringTable.empty();
|
MCMachObjectWriter.h | 107 StringTableBuilder StringTable{StringTableBuilder::MachO};
|
/external/llvm/lib/MC/ |
StringTableBuilder.cpp | 79 StringTable += '\x00'; 83 StringTable.append(4, '\x00'); 94 P->second = StringTable.size() - S.size() - (K != RAW); 98 P->second = StringTable.size(); 99 StringTable += S; 101 StringTable += '\x00'; 111 while (StringTable.size() % 4) 112 StringTable += '\x00'; 116 assert(StringTable.size() <= std::numeric_limits<uint32_t>::max()); 117 uint32_t Size = static_cast<uint32_t>(StringTable.size()) [all...] |
MachObjectWriter.cpp | 34 StringTable.clear(); 521 StringTable.add(Symbol.getName()); 523 StringTable.finalize(); 540 MSD.StringIndex = StringTable.getOffset(Symbol.getName()); 566 MSD.StringIndex = StringTable.getOffset(Symbol.getName()); 881 StringTableOffset, StringTable.data().size()); [all...] |
/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_;
|
dump_symbols_unittest.cc | 57 using google_breakpad::synth_elf::StringTable; 101 StringTable table(kLittleEndian); 141 StringTable table(kLittleEndian);
|
elf_symbols_to_module_unittest.cc | 48 using google_breakpad::synth_elf::StringTable; 84 StringTable table;
|
synth_elf_unittest.cc | 47 using google_breakpad::synth_elf::StringTable; 60 StringTable table; 122 StringTable table(kLittleEndian);
|
synth_elf.cc | 215 StringTable& table) : Section(endianness),
|
/external/regex-re2/re2/testing/ |
unicode_test.py | 76 def StringTable(s, n, f): 112 StringTable(_UNICODE_TABLE, 3, DoLine) 116 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 4, Abort) 117 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 2, Abort) 118 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE1, 3, Abort) 119 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE2, 3, Abort) 120 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE3, 3, Abort)
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
OatFile.java | 316 private StringTable getSectionNameStringTable() { 323 return new StringTable(getSections().get(index)); 361 @Nonnull private final StringTable stringTable; 368 this.stringTable = new StringTable(getSections().get(header.getLink())); 437 public String getName() { return stringTable.getString(readSmallUint(offset)); } 447 public String getName() { return stringTable.getString(readSmallUint(offset)); } 454 private class StringTable { 458 public StringTable(@Nonnull SectionHeader header) [all...] |
/external/llvm/utils/TableGen/ |
AsmWriterEmitter.cpp | 292 SequenceToOffsetTable<std::string> StringTable; 310 StringTable.add(Str); 314 StringTable.layout(); 327 Idx = StringTable.get(""); 331 Idx = StringTable.get(Str); 424 StringTable.emit(O, printChar); 531 SequenceToOffsetTable<std::string> StringTable; 564 StringTable.add(AsmName); 567 StringTable.layout(); 569 StringTable.emit(O, printChar) [all...] |
AsmMatcherEmitter.cpp | [all...] |
/external/llvm/tools/yaml2obj/ |
yaml2coff.cpp | 38 StringTable.append(4, char(0)); 125 unsigned Index = StringTable.size(); 126 StringTable.append(Str.begin(), Str.end()); 127 StringTable.push_back(0); 137 std::string StringTable; 224 if (NumberOfSymbols > 0 || CP.StringTable.size() > 4) 229 *reinterpret_cast<support::ulittle32_t *>(&CP.StringTable[0]) 230 = CP.StringTable.size(); 524 OS.write(&CP.StringTable[0], CP.StringTable.size()) [all...] |
/external/llvm/include/llvm/Object/ |
Archive.h | 217 StringRef StringTable;
|
/external/llvm/lib/Object/ |
Archive.cpp | 204 if (offset >= Parent->StringTable.size()) 206 const char *addr = Parent->StringTable.begin() + offset; 372 StringTable = *C->getBuffer(); 411 StringTable = *C->getBuffer();
|
ArchiveWriter.cpp | 274 StringRef StringTable = NameOS.str(); 276 print32(Out, Kind, StringTable.size()); // byte count of the string table 277 Out << StringTable;
|
COFFObjectFile.cpp | 134 auto End = reinterpret_cast<uintptr_t>(StringTable); 407 getObject(StringTable, Data, StringTableAddr, StringTableSize)) 416 if (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0) 555 SymbolTable32(nullptr), StringTable(nullptr), StringTableSize(0), 687 Ret.p = reinterpret_cast<uintptr_t>(StringTable); 853 Result = StringRef(StringTable + Offset); [all...] |
/art/runtime/native/ |
dalvik_system_VMRuntime.cc | 265 typedef std::map<std::string, mirror::String*> StringTable; 269 explicit PreloadDexCachesStringsVisitor(StringTable* table) : table_(table) { } 278 StringTable* const table_; 283 Handle<mirror::DexCache> dex_cache, uint32_t string_idx, StringTable& strings) 496 StringTable strings;
|
/external/v8/src/parsing/ |
json-parser.h | 776 StringTable* string_table = isolate()->heap()->string_table(); 778 uint32_t entry = StringTable::FirstProbe(hash, capacity); 800 entry = StringTable::NextProbe(entry, count++, capacity);
|
/external/v8/src/ast/ |
ast-value-factory.cc | 92 string_ = StringTable::LookupKey(isolate, &key);
|
/libcore/dex/src/main/java/com/android/dex/ |
Dex.java | 63 private final StringTable strings = new StringTable(); 890 private final class StringTable extends AbstractList<String> implements RandomAccess { [all...] |