Lines Matching refs:Entry
73 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name); in GetOrCreateSymbol() local
74 MCSymbol *Sym = Entry.getValue(); in GetOrCreateSymbol()
80 Entry.setValue(Sym); in GetOrCreateSymbol()
179 const MCSectionMachO *&Entry = Map[Name.str()]; in getMachOSection() local
180 if (Entry) return Entry; in getMachOSection()
183 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes, in getMachOSection()
201 StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section); in getELFSection() local
202 if (Entry.getValue()) return Entry.getValue(); in getELFSection()
213 MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags, in getELFSection()
215 Entry.setValue(Result); in getELFSection()
235 StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section); in getCOFFSection() local
236 if (Entry.getValue()) return Entry.getValue(); in getCOFFSection()
238 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(), in getCOFFSection()
242 Entry.setValue(Result); in getCOFFSection()