Searched refs:MapImpl (Results 1 – 1 of 1) sorted by relevance
197 template <typename T> class MapImpl : public Impl {199 virtual Impl *Copy() const override { return new MapImpl(Itr); } in Copy()207 return Itr == static_cast<const MapImpl<T> &>(Other).Itr; in Compare()209 explicit MapImpl(T &&Itr) : Itr(std::move(Itr)) {} in MapImpl() function210 explicit MapImpl(const T &Itr) : Itr(Itr) {} in MapImpl() function274 : Itr(new MapImpl<std::map<uint32_t, MCInst>::iterator>(Itr)) {} in InstructionIterator()