Home | History | Annotate | Download | only in wtf

Lines Matching defs:m_impl

108         HashTableType m_impl;
145 m_impl.swap(other.m_impl);
151 return m_impl.size();
157 return m_impl.capacity();
163 return m_impl.isEmpty();
169 return m_impl.begin();
175 return m_impl.end();
181 return m_impl.begin();
187 return m_impl.end();
193 return m_impl.find(key);
199 return m_impl.find(key);
205 return m_impl.contains(key);
214 return m_impl.template find<TYPE, Adapter>(value);
223 return m_impl.template find<TYPE, Adapter>(value);
232 return m_impl.template contains<TYPE, Adapter>(value);
240 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
261 return m_impl.template addPassingHashCode<TYPE, MappedType, Adapter>(key, value);
275 ValueType* entry = const_cast<HashTableType&>(m_impl).lookup(key);
284 if (it.m_impl == m_impl.end())
286 m_impl.internalCheckTableConsistency();
287 m_impl.removeWithoutEntryConsistencyCheck(it.m_impl);
299 m_impl.clear();
318 m_impl.checkTableConsistency();