Searched refs:Strings (Results 1 - 25 of 93) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DStringsAndChecksums.h27 explicit StringsAndChecksumsRef(const DebugStringTableSubsectionRef &Strings);
30 StringsAndChecksumsRef(const DebugStringTableSubsectionRef &Strings,
33 void setStrings(const DebugStringTableSubsectionRef &Strings);
42 if (Strings && Checksums)
48 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) {
64 const DebugStringTableSubsectionRef &strings() const { return *Strings; }
67 bool hasStrings() const { return Strings != nullptr; }
77 const DebugStringTableSubsectionRef *Strings = nullptr; member in class:llvm::codeview::StringsAndChecksumsRef
89 void setStrings(const StringsPtr &SP) { Strings = SP; }
92 const StringsPtr &strings() const { return Strings; }
99 StringsPtr Strings; member in class:llvm::codeview::StringsAndChecksums
[all...]
H A DDebugCrossImpSubsection.h72 DebugStringTableSubsection &Strings)
74 Strings(Strings) {}
86 DebugStringTableSubsection &Strings; member in class:llvm::codeview::final
71 DebugCrossModuleImportsSubsection( DebugStringTableSubsection &Strings) argument
H A DDebugSubsectionVisitor.h94 const DebugStringTableSubsectionRef &Strings) {
95 StringsAndChecksumsRef State(Strings);
102 const DebugStringTableSubsectionRef &Strings,
104 StringsAndChecksumsRef State(Strings, Checksums);
93 visitDebugSubsections(T &&FragmentRange, DebugSubsectionVisitor &V, const DebugStringTableSubsectionRef &Strings) argument
101 visitDebugSubsections(T &&FragmentRange, DebugSubsectionVisitor &V, const DebugStringTableSubsectionRef &Strings, const DebugChecksumsSubsectionRef &Checksums) argument
H A DDebugChecksumsSubsection.h77 explicit DebugChecksumsSubsection(DebugStringTableSubsection &Strings);
91 DebugStringTableSubsection &Strings; member in class:llvm::codeview::final
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DStringsAndChecksums.cpp24 const DebugStringTableSubsectionRef &Strings)
25 : Strings(&Strings) {}
28 const DebugStringTableSubsectionRef &Strings,
30 : Strings(&Strings), Checksums(&Checksums) {}
35 assert(!Strings && "Found a string table even though we already have one!");
39 Strings = OwnedStrings.get();
49 Strings = nullptr;
61 Strings
23 StringsAndChecksumsRef( const DebugStringTableSubsectionRef &Strings) argument
27 StringsAndChecksumsRef( const DebugStringTableSubsectionRef &Strings, const DebugChecksumsSubsectionRef &Checksums) argument
[all...]
H A DDebugChecksumsSubsection.cpp64 DebugStringTableSubsection &Strings)
65 : DebugSubsection(DebugSubsectionKind::FileChecksums), Strings(Strings) {}
77 Entry.FileNameOffset = Strings.insert(FileName);
111 uint32_t Offset = Strings.getIdForString(FileName);
63 DebugChecksumsSubsection( DebugStringTableSubsection &Strings) argument
H A DDebugCrossImpSubsection.cpp56 Strings.insert(Module);
82 return Strings.getIdForString(L1->getKey()) <
83 Strings.getIdForString(L2->getKey());
88 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumInjectedSources.cpp37 const PDBStringTable &Strings; member in class:llvm::pdb::__anon3629::final
42 PDBFile &File, const PDBStringTable &Strings)
43 : Entry(Entry), Strings(Strings), File(File) {}
49 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI),
55 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI),
61 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI),
71 cantFail(Strings.getStringForID(Entry.VFileNI),
97 const PDBStringTable &Strings)
98 : File(File), Stream(IJS), Strings(String
41 NativeInjectedSource(const SrcHeaderBlockEntry &Entry, PDBFile &File, const PDBStringTable &Strings) argument
95 NativeEnumInjectedSources( PDBFile &File, const InjectedSourceStream &IJS, const PDBStringTable &Strings) argument
[all...]
H A DPDBStringTableBuilder.cpp47 return Strings.insert(S);
51 return Strings.getIdForString(S);
55 return Strings.getStringForId(Id);
134 Size += sizeof(uint32_t) * computeBucketCount(Strings.size());
142 Size += Strings.calculateSerializedSize();
149 const codeview::DebugStringTableSubsection &Strings) {
150 this->Strings = Strings;
158 H.ByteSize = Strings.calculateSerializedSize();
166 if (auto EC = Strings
148 setStrings( const codeview::DebugStringTableSubsection &Strings) argument
[all...]
H A DInjectedSourceStream.cpp28 Error InjectedSourceStream::reload(const PDBStringTable &Strings) { argument
52 auto Name = Strings.getStringForID(Entry.second.FileNI);
55 auto ObjName = Strings.getStringForID(Entry.second.ObjNI);
58 auto VName = Strings.getStringForID(Entry.second.VFileNI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp14 if (S.empty() && !Strings.empty())
19 auto I = Strings.insert({S, DwarfStringPoolEntry()});
36 auto InsertResult = Strings.insert({S, Entry});
43 Result.reserve(Strings.size());
44 for (const auto &E : Strings)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeEnumInjectedSources.h25 const PDBStringTable &Strings);
36 const PDBStringTable &Strings; member in class:llvm::pdb::NativeEnumInjectedSources
H A DInjectedSourceStream.h27 Error reload(const PDBStringTable &Strings);
H A DPDBStringTableBuilder.h56 void setStrings(const codeview::DebugStringTableSubsection &Strings);
65 codeview::DebugStringTableSubsection Strings; member in class:llvm::pdb::PDBStringTableBuilder
H A DPDBStringTable.h56 codeview::DebugStringTableSubsectionRef Strings; member in class:llvm::pdb::PDBStringTable
/freebsd-13-stable/contrib/llvm-project/clang/include/clang-c/
H A DCXString.h43 CXString *Strings; member in struct:__anon1483
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dalloc_entry.c139 /* copy term_names, Strings, uses */
142 if (tp->Strings[i] != ABSENT_STRING &&
143 tp->Strings[i] != CANCELLED_STRING) {
144 tp->Strings[i] = _nc_save_str(tp->Strings[i]);
161 if (tp->Strings[i] == ABSENT_STRING) {
163 } else if (tp->Strings[i] == CANCELLED_STRING) {
166 offsets[i] = (int) (tp->Strings[i] - stringbuf);
185 tp->Strings[i] = ABSENT_STRING;
187 tp->Strings[
[all...]
H A Dinit_keytry.c81 CUR Strings[_nc_tinfo_fkeys[n].offset],
95 char *value = tp->Strings[n];
H A Dfree_ttype.c58 FreeIfNeeded(ptr->Strings);
H A Dalloc_ttype.c166 TYPE_REALLOC(char *, to->num_Strings, to->Strings);
171 to->Strings[base + m] = to->Strings[base + n--];
173 to->Strings[base + m] = ABSENT_STRING;
304 tp->Strings[j] = tp->Strings[j + 1];
360 TYPE_REALLOC(char *, tp->num_Strings, tp->Strings);
362 tp->Strings[k] = tp->Strings[k - 1];
384 if (to->Strings[
[all...]
H A Dwrite_entry.c567 compute_offsets(char **Strings, size_t strmax, short *offsets) argument
573 if (Strings[i] == ABSENT_STRING) {
575 } else if (Strings[i] == CANCELLED_STRING) {
579 nextfree += (int) strlen(Strings[i]) + 1;
580 TRACE_OUT(("put Strings[%d]=%s(%d)", (int) i,
581 _nc_visbuf(Strings[i]), (int) nextfree));
676 if (tp->Strings[STRCOUNT + i] != ABSENT_STRING)
758 if (tp->Strings[i] != ABSENT_STRING)
762 nextfree = compute_offsets(tp->Strings, strmax, offsets);
824 if (VALID_STRING(tp->Strings[
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkStringTable.cpp66 std::vector<StringRef> Strings{StrTab.size()};
68 Strings[KV.second] = KV.first();
69 return Strings;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringSaver.cpp24 *R.first = Strings.save(S); // safe replacement with equal value
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DStringSaver.h43 StringSaver Strings; member in class:llvm::final
47 UniqueStringSaver(BumpPtrAllocator &Alloc) : Strings(Alloc) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DStringTableBuilder.cpp135 std::vector<StringPair *> Strings; local
136 Strings.reserve(StringIndexMap.size());
138 Strings.push_back(&P);
140 multikeySort(Strings, 0);
144 for (StringPair *P : Strings) {

Completed in 92 milliseconds

1234