Home
last modified time | relevance | path

Searched refs:Strings (Results 1 – 25 of 280) sorted by relevance

12345678910>>...12

/netbsd-src/external/apache2/llvm/dist/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) in initialize()
48 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
64 const DebugStringTableSubsectionRef &strings() const { return *Strings; } in strings()
67 bool hasStrings() const { return Strings != nullptr; } in hasStrings()
77 const DebugStringTableSubsectionRef *Strings = nullptr; variable
89 void setStrings(const StringsPtr &SP) { Strings = SP; } in setStrings()
92 const StringsPtr &strings() const { return Strings; } in strings()
[all …]
H A DDebugCrossImpSubsection.h72 DebugStringTableSubsection &Strings)
74 Strings(Strings) {}
86 DebugStringTableSubsection &Strings;
H A DDebugSubsectionVisitor.h91 const DebugStringTableSubsectionRef &Strings) { in visitDebugSubsections() argument
92 StringsAndChecksumsRef State(Strings); in visitDebugSubsections()
99 const DebugStringTableSubsectionRef &Strings, in visitDebugSubsections() argument
101 StringsAndChecksumsRef State(Strings, Checksums); in visitDebugSubsections()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumInjectedSources.cpp37 const PDBStringTable &Strings; member in llvm::pdb::__anon70d5adbe0111::NativeInjectedSource
42 PDBFile &File, const PDBStringTable &Strings) in NativeInjectedSource() argument
43 : Entry(Entry), Strings(Strings), File(File) {} in NativeInjectedSource()
49 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI), in getFileName()
55 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI), in getObjectFileName()
61 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI), in getVirtualFileName()
71 cantFail(Strings.getStringForID(Entry.VFileNI), in getCode()
97 const PDBStringTable &Strings) in NativeEnumInjectedSources() argument
98 : File(File), Stream(IJS), Strings(Strings), Cur(Stream.begin()) {} in NativeEnumInjectedSources()
109 File, Strings); in getChildAtIndex()
[all …]
H A DPDBStringTableBuilder.cpp47 return Strings.insert(S); in insert()
51 return Strings.getIdForString(S); in getIdForString()
55 return Strings.getStringForId(Id); in getStringForId()
134 Size += sizeof(uint32_t) * computeBucketCount(Strings.size()); in calculateHashTableSize()
142 Size += Strings.calculateSerializedSize(); in calculateSerializedSize()
149 const codeview::DebugStringTableSubsection &Strings) { in setStrings() argument
150 this->Strings = Strings; in setStrings()
158 H.ByteSize = Strings.calculateSerializedSize(); in writeHeader()
166 if (auto EC = Strings.commit(Writer)) in writeStrings()
175 uint32_t BucketCount = computeBucketCount(Strings.size()); in writeHashTable()
[all …]
H A DInjectedSourceStream.cpp28 Error InjectedSourceStream::reload(const PDBStringTable &Strings) { in reload() argument
52 auto Name = Strings.getStringForID(Entry.second.FileNI); in reload()
55 auto ObjName = Strings.getStringForID(Entry.second.ObjNI); in reload()
58 auto VName = Strings.getStringForID(Entry.second.VFileNI); in reload()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DStringsAndChecksums.cpp24 const DebugStringTableSubsectionRef &Strings) in StringsAndChecksumsRef() argument
25 : Strings(&Strings) {} in StringsAndChecksumsRef()
28 const DebugStringTableSubsectionRef &Strings, in StringsAndChecksumsRef() argument
30 : Strings(&Strings), Checksums(&Checksums) {} in StringsAndChecksumsRef()
35 assert(!Strings && "Found a string table even though we already have one!"); in initializeStrings()
39 Strings = OwnedStrings.get(); in initializeStrings()
49 Strings = nullptr; in resetStrings()
61 Strings = OwnedStrings.get(); in setStrings()
H A DDebugChecksumsSubsection.cpp64 DebugStringTableSubsection &Strings) in DebugChecksumsSubsection() argument
65 : DebugSubsection(DebugSubsectionKind::FileChecksums), Strings(Strings) {} in DebugChecksumsSubsection()
77 Entry.FileNameOffset = Strings.insert(FileName); in addChecksum()
111 uint32_t Offset = Strings.getIdForString(FileName); in mapChecksumOffset()
H A DDebugCrossImpSubsection.cpp56 Strings.insert(Module); in addImport()
82 return Strings.getIdForString(L1->getKey()) < in commit()
83 Strings.getIdForString(L2->getKey()); in commit()
88 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey()); in commit()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXString.cpp113 CXStringSet *createSet(const std::vector<std::string> &Strings) { in createSet() argument
115 Set->Count = Strings.size(); in createSet()
116 Set->Strings = new CXString[Set->Count]; in createSet()
118 Set->Strings[SI] = createDup(Strings[SI]); in createSet()
187 clang_disposeString(set->Strings[SI]); in clang_disposeStringSet()
188 delete[] set->Strings; in clang_disposeStringSet()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp14 if (S.empty() && !Strings.empty()) in getEntry()
19 auto I = Strings.insert({S, DwarfStringPoolEntry()}); in getEntry()
36 auto InsertResult = Strings.insert({S, Entry}); in internString()
43 Result.reserve(Strings.size()); in getEntriesForEmission()
44 for (const auto &E : Strings) in getEntriesForEmission()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp114 fromCodeViewSubsection(const DebugStringTableSubsectionRef &Strings,
128 fromCodeViewSubsection(const DebugStringTableSubsectionRef &Strings,
144 fromCodeViewSubsection(const DebugStringTableSubsectionRef &Strings,
174 fromCodeViewSubsection(const DebugStringTableSubsectionRef &Strings,
202 fromCodeViewSubsection(const DebugStringTableSubsectionRef &Strings);
204 std::vector<StringRef> Strings; member
216 fromCodeViewSubsection(const DebugStringTableSubsectionRef &Strings,
357 IO.mapRequired("Strings", Strings); in map()
503 for (const auto &Str : this->Strings) in toCodeViewSubsection()
541 convertOneChecksum(const DebugStringTableSubsectionRef &Strings, in convertOneChecksum() argument
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
H A Dfilename.h16 typedef Array<const char *> Strings; typedef
36 static Strings *splitPath(const char *path);
43 static const char *searchPath(Strings *path, const char *name, bool cwd);
44 static const char *safeSearchPath(Strings *path, const char *name);
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dmodule.h79 Strings contentImportedFiles; // array of files whose content was imported
103 Strings *debugids; // debug identifiers
104 Strings *debugidsNot; // forward referenced debug identifiers
107 Strings *versionids; // version identifiers
108 Strings *versionidsNot; // forward referenced version identifiers
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DAssumptions.cpp24 SmallVector<StringRef, 8> Strings; in hasAssumption() local
25 A.getValueAsString().split(Strings, ","); in hasAssumption()
27 return llvm::any_of(Strings, [=](StringRef Assumption) { in hasAssumption()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Dfilename.h15 typedef Array<const char *> Strings; typedef
33 static Strings *splitPath(const char *path);
40 static const char *searchPath(Strings *path, const char *name, bool cwd);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DStringTableBuilder.cpp140 std::vector<StringPair *> Strings; in finalizeStringTable() local
141 Strings.reserve(StringIndexMap.size()); in finalizeStringTable()
143 Strings.push_back(&P); in finalizeStringTable()
145 multikeySort(Strings, 0); in finalizeStringTable()
149 for (StringPair *P : Strings) { in finalizeStringTable()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dd-incpath.cc70 add_globalpaths (Strings *paths) in add_globalpaths()
75 global.path = d_gc_malloc<Strings> (); in add_globalpaths()
97 add_filepaths (Strings *paths) in add_filepaths()
102 global.filePath = d_gc_malloc<Strings> (); in add_filepaths()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-incpath.cc71 add_globalpaths (Strings *paths) in add_globalpaths()
76 global.path = new Strings (); in add_globalpaths()
98 add_filepaths (Strings *paths) in add_filepaths()
103 global.filePath = new Strings (); in add_filepaths()
/netbsd-src/crypto/external/cpl/tpm-tools/dist/po/
H A DMakevars.template25 # - Strings which are not entire sentences, see the maintainer guidelines
26 # in the GNU gettext documentation, section 'Preparing Strings'.
27 # - Strings which use unclear terms or require additional context to be
29 # - Strings which make invalid assumptions about notation of date, time or
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/po/
H A DMakevars.template25 # - Strings which are not entire sentences, see the maintainer guidelines
26 # in the GNU gettext documentation, section 'Preparing Strings'.
27 # - Strings which use unclear terms or require additional context to be
29 # - Strings which make invalid assumptions about notation of date, time or
/netbsd-src/external/bsd/tre/dist/po/
H A DMakevars25 # - Strings which are not entire sentences, see the maintainer guidelines
26 # in the GNU gettext documentation, section 'Preparing Strings'.
27 # - Strings which use unclear terms or require additional context to be
29 # - Strings which make invalid assumptions about notation of date, time or
/netbsd-src/external/bsd/openldap/dist/tests/progs/
H A Dldif-filter.c36 typedef struct { String *val; size_t len, alloc; } Strings; typedef
117 sort_strings( Strings *ss, size_t offset ) in sort_strings()
124 build_entry( Strings *ss, size_t n, unsigned flags, size_t new_len ) in build_entry()
145 flush_entries( Strings *ss, const char *sep, unsigned flags ) in flush_entries()
167 Strings ss = { NULL, 0, 0 }; /* entries + attrs of partial entry */ in filter_stdin()
/netbsd-src/external/gpl2/texinfo/dist/po/
H A DMakevars25 # - Strings which are not entire sentences, see the maintainer guidelines
26 # in the GNU gettext documentation, section 'Preparing Strings'.
27 # - Strings which use unclear terms or require additional context to be
29 # - Strings which make invalid assumptions about notation of date, time or
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DRemarkStringTable.cpp66 std::vector<StringRef> Strings{StrTab.size()}; in serialize() local
68 Strings[KV.second] = KV.first(); in serialize()
69 return Strings; in serialize()

12345678910>>...12