Lines Matching refs:Key
46 ULONG Hash(String const& Key) const;
47 ULONG DHash(String const& Key, ULONG lHash) const;
50 HashItem* FindPos(String const& Key) const;
92 void* Find (String const& Key) const;
93 BOOL Insert (String const& Key, void* pObject);
94 void* Delete (String const& Key);
132 ObjType Find (KeyType const& Key) const \
133 { return (ObjType) HashTable::Find(String(Key)); } \
135 BOOL Insert (KeyType const& Key, ObjType Object) \
136 { return HashTable::Insert(String(Key), (void*) Object); } \
138 ObjType Delete (KeyType const&Key) \
139 { return (ObjType) HashTable::Delete (String(Key)); } \