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; });
204 for (auto &Entry : Obj.Symbols)
205 Entries.push_back(std::make_pair(Entry.getKey(), Entry.getValue()));
238 for (auto &Entry : Entries) {
239 auto &Mapping = Entry.second;
241 auto AddressIt = SymbolAddresses.find(Entry.first);
244 Res.addSymbol(Entry.first, ObjAddress, Mapping.BinaryAddress, Mapping.Size);