Home | History | Annotate | Download | only in wtf

Lines Matching full:m_impl

1175         HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
1179 GetType get() const { return const_cast<GetType>(SourceGetType(m_impl.get())); }
1183 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; }
1186 typename HashTableType::const_iterator m_impl;
1194 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
1196 GetType get() const { return const_cast<GetType>(SourceGetType(m_impl.get())); }
1200 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
1205 typename HashTableType::const_iterator i = m_impl;
1209 typename HashTableType::iterator m_impl;
1215 return a.m_impl == b.m_impl;
1221 return a.m_impl != b.m_impl;
1227 return a.m_impl == b.m_impl;
1233 return a.m_impl != b.m_impl;
1240 return a.m_impl == b.m_impl;
1246 return a.m_impl != b.m_impl;
1252 return a.m_impl == b.m_impl;
1258 return a.m_impl != b.m_impl;