| /freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | StringMapEntry.h | 102 class StringMapEntry final : public StringMapEntryStorage<ValueTy> { 126 static StringMapEntry *create(StringRef key, AllocatorTy &allocator, in create() 129 sizeof(StringMapEntry), alignof(StringMapEntry), key, allocator)) in create() 130 StringMapEntry(key.size(), std::forward<InitTy>(initVals)...); in create() 135 static StringMapEntry &GetStringMapEntryFromKeyData(const char *keyData) { in GetStringMapEntryFromKeyData() 136 char *ptr = const_cast<char *>(keyData) - sizeof(StringMapEntry<ValueTy>); in GetStringMapEntryFromKeyData() 137 return *reinterpret_cast<StringMapEntry *>(ptr); in GetStringMapEntryFromKeyData() 144 size_t AllocSize = sizeof(StringMapEntry) + this->getKeyLength() + 1; in Destroy() 145 this->~StringMapEntry(); in Destroy() 147 alignof(StringMapEntry)); in Destroy() [all …]
|
| H A D | StringMap.h | 17 #include "llvm/ADT/StringMapEntry.h" 79 /// RemoveKey - Remove the specified StringMapEntry from the table, but do not 83 /// RemoveKey - Remove the StringMapEntry for the specified key from the 132 using MapEntryTy = StringMapEntry<ValueTy>; in StringMap() 213 using value_type = StringMapEntry<ValueTy>; in keys() 279 size_type count(const StringMapEntry<InputTy> &MapEntry) const { 479 const StringMapEntry<ValueTy>> { 481 const StringMapEntry<ValueTy>>; 489 const StringMapEntry<ValueTy> &operator*() const { 490 return *static_cast<const StringMapEntry<ValueT [all...] |
| H A D | StringSet.h | 50 insert(const StringMapEntry<ValueTy> &mapEntry) {
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfStringPool.cpp | 25 StringMapEntry<DwarfStringPool::EntryTy> & 84 SmallVector<const StringMapEntry<EntryTy> *, 64> Entries; in emit() 90 llvm::sort(Entries, [](const StringMapEntry<EntryTy> *A, in emit() 91 const StringMapEntry<EntryTy> *B) { in emit()
|
| H A D | DwarfStringPool.h | 35 StringMapEntry<EntryTy> &getEntryImpl(AsmPrinter &Asm, StringRef Str);
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSymbol.h | 16 #include "llvm/ADT/StringMapEntry.h"
|
| H A D | MCSymbolGOFF.h | |
| H A D | MCSymbolELF.h | |
| H A D | MCSymbolCOFF.h | |
| H A D | MCSymbolXCOFF.h | |
| H A D | MCSymbolMachO.h | |
| H A D | MCSymbolWasm.h | |
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Comdat.h | 27 template <typename ValueTy> class StringMapEntry; variable 62 StringMapEntry<Comdat> *Name = nullptr;
|
| H A D | LLVMContext.h | 35 template <typename T> class StringMapEntry; variable 117 StringMapEntry<uint32_t> *getOrInsertBundleTag(StringRef TagName) const;
|
| H A D | Value.h | 50 template<typename ValueTy> class StringMapEntry; variable 55 using ValueName = StringMapEntry<Value *>;
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | DwarfStringPoolEntry.h | 51 using ByValStringEntryPtr = const StringMapEntry<DwarfStringPoolEntry> *; 64 DwarfStringPoolEntryRef(const StringMapEntry<DwarfStringPoolEntry> &Entry) in DwarfStringPoolEntryRef()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
| H A D | StringPool.h | 23 using StringEntry = StringMapEntry<std::nullopt_t>;
|
| /freebsd-src/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSymbol.cpp | |
| /freebsd-src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | SourceManagerInternals.h | 88 std::vector<llvm::StringMapEntry<unsigned>*> FilenamesByID;
|
| H A D | DirectoryEntry.h | 60 using MapEntry = llvm::StringMapEntry<llvm::ErrorOr<DirectoryEntry &>>;
|
| H A D | FileEntry.h | 112 using MapEntry = llvm::StringMapEntry<llvm::ErrorOr<MapValue>>;
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Testing/ADT/ |
| H A D | StringMapEntry.h | 33 std::ostream &operator<<(std::ostream &OS, const StringMapEntry<T> &E) {
|
| /freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | TypePool.h | 27 using TypeEntry = StringMapEntry<std::atomic<TypeEntryBody *>>;
|
| /freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMContextImpl.cpp | 16 #include "llvm/ADT/StringMapEntry.h" 216 StringMapEntry<uint32_t> *LLVMContextImpl::getOrInsertBundleTag(StringRef Tag) { in getOperandBundleTags()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | SymbolStringPool.h | 58 using PoolMapEntry = StringMapEntry<RefCountType>;
|