Lines Matching refs:candidate
94 T* candidate = fArray[index]; in find() local
95 if (Empty() == candidate) { in find()
98 if (Deleted() != candidate && GetKey(*candidate) == key) { in find()
99 return candidate; in find()
148 const T* candidate = fArray[index]; in countCollisions() local
149 if (Empty() == candidate || Deleted() == candidate || GetKey(*candidate) == key) { in countCollisions()
212 const T* candidate = fArray[index]; in innerAdd() local
213 if (Empty() == candidate || Deleted() == candidate) { in innerAdd()
214 if (Deleted() == candidate) { in innerAdd()
231 const T* candidate = fArray[index]; in innerRemove() local
232 if (Deleted() != candidate && GetKey(*candidate) == key) { in innerRemove()