Home | History | Annotate | Download | only in wtf

Lines Matching defs:ValueType

38         typedef KeyValuePair<KeyType, MappedType> ValueType;
46 const ValueType* get() const { return (const ValueType*)m_impl.get(); }
47 const ValueType& operator*() const { return *get(); }
48 const ValueType* operator->() const { return get(); }
61 typedef KeyValuePair<KeyType, MappedType> ValueType;
69 ValueType* get() const { return (ValueType*)m_impl.get(); }
70 ValueType& operator*() const { return *get(); }
71 ValueType* operator->() const { return get(); }
76 operator HashTableConstIteratorAdapter<HashTableType, ValueType>() {