Lines Matching refs:aKey
218 ONDXKey aKey; in Find() local
219 return ConvertToKey(&aKey, nRec, rValue) && getRoot()->Find(aKey); in Find()
227 ONDXKey aKey; in Insert() local
231 if (!ConvertToKey(&aKey, nRec, rValue) || (getRoot()->Find(aKey) && isUnique())) in Insert()
234 ONDXNode aNewNode(aKey); in Insert()
252 ONDXKey aKey; in Update() local
253 if (!ConvertToKey(&aKey, nRec, rNewValue) || (isUnique() && getRoot()->Find(aKey))) in Update()
266 ONDXKey aKey; in Delete() local
267 if (!ConvertToKey(&aKey, nRec, rValue) || !getRoot()->Find(aKey)) in Delete()
270 ONDXNode aNewNode(aKey); in Delete()
628 ONDXKey aKey(atmpValue, nType, 0); in CreateImpl() local
638 aKey.setValue(aValue); in CreateImpl()
639 if (aKey == (*m_aCurLeaf)[m_nCurNode].GetKey()) in CreateImpl()