HashItemKnownGood 418 Source/wtf/HashTable.h iterator makeKnownGoodIterator(ValueType* pos) { return iterator(pos, m_table + m_tableSize, this, HashItemKnownGood); } HashItemKnownGood 419 Source/wtf/HashTable.h const_iterator makeKnownGoodConstIterator(ValueType* pos) const { return const_iterator(pos, m_table + m_tableSize, this, HashItemKnownGood); }