Searched refs:MapEntry (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp25 class MapEntry { class
27 MapEntry() = default;
28 explicit MapEntry(ValueObjectSP entry_sp) : m_entry_sp(entry_sp) {} function in class:MapEntry
29 MapEntry(const MapEntry &rhs) = default;
30 explicit MapEntry(ValueObject *entry) function in class:MapEntry
77 bool operator==(const MapEntry &rhs) const {
88 MapIterator(MapEntry entry, size_t depth = 0)
119 MapEntry right(m_entry.right());
133 m_entry = MapEntry();
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp43 auto &MapEntry = getEntryImpl(Asm, Str); local
44 return EntryRef(MapEntry, false);
49 auto &MapEntry = getEntryImpl(Asm, Str); local
50 if (!MapEntry.getValue().isIndexed())
51 MapEntry.getValue().Index = NumIndexedStrings++;
52 return EntryRef(MapEntry, true);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp107 DocNode *MapEntry = nullptr)
109 MapEntry(MapEntry) {}
114 DocNode *MapEntry; member in struct:StackLevel
190 if (!Stack.back().MapEntry) {
193 Stack.back().MapEntry = &Map[Node];
197 DestNode = Stack.back().MapEntry;
198 Stack.back().MapEntry = nullptr;
229 if (Stack.back().MapEntry)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DConstantHoisting.h136 for (auto MapEntry : ConstGEPCandMap)
137 MapEntry.second.clear();
140 for (auto MapEntry : ConstGEPInfoMap)
141 MapEntry.second.clear();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp280 for (const auto &MapEntry : CacheMap) {
283 if (Offset + Data.size() < MapEntry.first)
285 for (const auto &Alloc : MapEntry.second) {
288 if (MapEntry.first + Alloc.size() < Offset)
294 std::make_pair(MapEntry.first, MapEntry.first + Alloc.size());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp953 for (auto &MapEntry : ConstGEPCandMap)
954 if (!MapEntry.second.empty())
955 findBaseConstants(MapEntry.first);
962 for (auto MapEntry : ConstGEPInfoMap)
963 if (!MapEntry.second.empty())
964 MadeChange |= emitBaseConstants(MapEntry.first);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h247 size_type count(const StringMapEntry<InputTy> &MapEntry) const {
248 return count(MapEntry.getKey());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1981 uint8_t MapEntry = FixupMap[i * 8 + 0];
1983 if (FixupMap[i * 8 + j] == MapEntry)
1986 MapEntry = uint8_t(~0U);
1990 if (MapEntry != uint8_t(~0U)) {
1991 if (MapEntry == 0) {
1997 << char('A' + MapEntry - 1) << '\'';
1999 OS << char('A' + MapEntry - 1);
2013 if (uint8_t MapEntry = FixupMap[FixupBit]) {
2015 OS << char('A' + MapEntry - 1);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp759 for (auto MapEntry : ImportedModuleFiles) {
760 auto *File = MapEntry.first;
761 ImportedModuleFileInfo &Info = MapEntry.second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp456 auto &MapEntry = I.first->getValue(); local
458 return &MapEntry;
459 MapEntry.Entry = &*I.first;
460 return &MapEntry;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1582 for (auto &MapEntry : Value2VPValue)
1583 delete MapEntry.second;

Completed in 305 milliseconds