Home | History | Annotate | Download | only in dsymutil

Lines Matching refs:Entry

41   typedef std::pair<StringRef, SymbolMapping> Entry;
42 std::vector<Entry> Entries;
48 [](const Entry &LHS, const Entry &RHS) { return LHS.first < RHS.first; });
207 for (auto &Entry : Obj.Symbols)
208 Entries.push_back(std::make_pair(Entry.getKey(), Entry.getValue()));
246 for (auto &Entry : Entries) {
247 auto &Mapping = Entry.second;
251 auto AddressIt = SymbolAddresses.find(Entry.first);
254 Res.addSymbol(Entry.first, ObjAddress, Mapping.BinaryAddress, Mapping.Size);