HomeSort by: relevance | last modified time | path
    Searched refs:StringTable (Results 1 - 25 of 65) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
RemarkStringTable.h 36 struct StringTable {
43 StringTable() = default;
46 StringTable(const StringTable &) = delete;
47 StringTable &operator=(const StringTable &) = delete;
49 StringTable(StringTable &&) = default;
50 StringTable &operator=(StringTable &&) = default
    [all...]
BitstreamRemarkSerializer.h 97 void emitMetaStrTab(const StringTable &StrTab);
108 Optional<const StringTable *> StrTab = None,
112 void emitRemarkBlock(const Remark &Remark, StringTable &StrTab);
139 StringTable StrTab);
168 Optional<const StringTable *> StrTab;
174 Optional<const StringTable *> StrTab = None,
185 Optional<const StringTable *> StrTab = None,
YAMLRemarkSerializer.h 38 Optional<StringTable> StrTab = None);
52 Optional<StringTable> StrTab = None);
78 StringTable StrTab)
95 const StringTable &StrTab;
99 const StringTable &StrTab)
RemarkSerializer.h 47 Optional<StringTable> StrTab;
83 raw_ostream &OS, remarks::StringTable StrTab);
RemarkLinker.h 41 StringTable StrTab;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
StringTable.h 1 //===- StringTable.h --------------------------------------------*- C++ -*-===//
22 struct StringTable {
24 StringTable() : Data() {}
25 StringTable(StringRef D) : Data(D) {}
37 inline raw_ostream &operator<<(raw_ostream &OS, const StringTable &S) {
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
RemarkStringTable.cpp 23 StringTable::StringTable(const ParsedStringTable &Other) : StrTab() {
31 std::pair<unsigned, StringRef> StringTable::add(StringRef Str) {
41 void StringTable::internalize(Remark &R) {
56 void StringTable::serialize(raw_ostream &OS) const {
65 std::vector<StringRef> StringTable::serialize() const {
YAMLRemarkSerializer.cpp 64 StringTable &StrTab = *Serializer->StrTab;
89 StringTable &StrTab = *Serializer->StrTab;
144 StringTable &StrTab = *Serializer->StrTab;
163 Optional<StringTable> StrTabIn)
168 Optional<StringTable> StrTabIn)
222 static void emitStrTab(raw_ostream &OS, Optional<const StringTable *> StrTab) {
RemarkSerializer.cpp 39 raw_ostream &OS, remarks::StringTable StrTab) {
BitstreamRemarkSerializer.cpp 93 const StringTable &StrTab) {
234 Optional<const StringTable *> StrTab, Optional<StringRef> Filename) {
268 StringTable &StrTab) {
339 StringTable StrTabIn)
355 IsStandalone ? &*StrTab : Optional<const StringTable *>(None));
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugStringTableSubsection.h 36 return S->kind() == DebugSubsectionKind::StringTable;
61 return S->kind() == DebugSubsectionKind::StringTable;
StringsAndChecksums.h 48 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) {
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
asfile.c 312 ACPI_STRING_TABLE *StringTable;
325 StringTable = ConversionTable->SourceStringTable;
336 StringTable = ConversionTable->HeaderStringTable;
347 StringTable = ConversionTable->PatchStringTable;
383 if (StringTable)
385 for (i = 0; StringTable[i].Target; i++)
387 AsReplaceString (StringTable[i].Target, StringTable[i].Replacement,
388 StringTable[i].Type, FileBuffer);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
WindowsResource.h 164 ArrayRef<std::vector<UTF16>> getStringTable() const { return StringTable; }
187 // Index is the StringTable vector index for this node's name.
203 std::vector<std::vector<UTF16>> &StringTable,
206 std::vector<std::vector<UTF16>> &StringTable);
208 std::vector<std::vector<UTF16>> &StringTable);
217 std::vector<std::vector<UTF16>> &StringTable);
253 std::vector<std::vector<UTF16>> StringTable;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugStringTableSubsection.cpp 23 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {}
45 : DebugSubsection(DebugSubsectionKind::StringTable) {}
StringsAndChecksums.cpp 34 assert(SR.kind() == DebugSubsectionKind::StringTable);
DebugSubsectionVisitor.cpp 71 case DebugSubsectionKind::StringTable: {
  /src/external/apache2/llvm/dist/llvm/lib/Object/
ArchiveWriter.cpp 211 printMemberHeader(raw_ostream &Out, uint64_t Pos, raw_ostream &StringTable,
224 NamePos = StringTable.tell();
225 StringTable << M.MemberName << "/\n";
229 Insertion.first->second = StringTable.tell();
230 StringTable << M.MemberName << "/\n";
291 StringRef StringTable,
301 Size += StringTable.size();
327 StringRef StringTable) {
330 if (StringTable.empty() && !isDarwin(Kind))
339 uint64_t Size = computeSymbolTableSize(Kind, NumSyms, OffsetSize, StringTable, &Pad)
    [all...]
WindowsResource.cpp 150 case 6: OS << "STRINGTABLE (ID 6)"; break;
354 bool IsNewNode = Root.addEntry(Entry, Origin, Data, StringTable, Node);
384 std::vector<std::vector<UTF16>> &StringTable, TreeNode *&Result) {
385 TreeNode &TypeNode = addTypeNode(Entry, StringTable);
386 TreeNode &NameNode = TypeNode.addNameNode(Entry, StringTable);
407 Child = &Node.addNameChild(NameString, StringTable);
485 std::vector<std::vector<UTF16>> &StringTable) {
487 return addNameChild(Entry.getTypeString(), StringTable);
494 std::vector<std::vector<UTF16>> &StringTable) {
496 return addNameChild(Entry.getNameString(), StringTable);
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
YAMLOutputStyle.cpp 106 bool RequestedStringTable = opts::pdb2yaml::StringTable;
114 Obj.StringTable.emplace();
122 Obj.StringTable->push_back(*S);
185 case DebugSubsectionKind::StringTable:
186 return opts::ModuleSubsection::StringTable;
InputFile.cpp 171 auto StringTable = File->pdb().getStringTable();
172 if (StringTable)
173 SC.setStrings(StringTable->getStringTable());
175 consumeError(StringTable.takeError());
PdbYaml.h 110 Optional<std::vector<StringRef>> StringTable;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
COFFEmitter.cpp 40 StringTable.append(4, char(0));
140 unsigned Index = StringTable.size();
141 StringTable.append(Str.begin(), Str.end());
142 StringTable.push_back(0);
154 std::string StringTable;
304 if (NumberOfSymbols > 0 || CP.StringTable.size() > 4)
309 *reinterpret_cast<support::ulittle32_t *>(&CP.StringTable[0]) =
310 CP.StringTable.size();
596 OS.write(&CP.StringTable[0], CP.StringTable.size())
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
AsmWriterEmitter.cpp 311 SequenceToOffsetTable<std::string> StringTable;
326 StringTable.add(Str);
330 StringTable.layout();
338 Idx = StringTable.get("");
342 Idx = StringTable.get(Str);
404 StringTable.emitStringLiteralDef(O, " static const char AsmStrs[]");
552 SequenceToOffsetTable<std::string> StringTable;
585 StringTable.add(AsmName);
588 StringTable.layout();
589 StringTable.emitStringLiteralDef(O, Twine(" static const char AsmStrs")
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
file_manager.d 13 import dmd.root.stringtable : StringTable;
25 private StringTable!(const(ubyte)[]) files;

Completed in 62 milliseconds

1 2 3