Lines Matching refs:pKey

82 		ONDXKey* pKey = GetNextKey();  in Find()  local
83 nRes = pKey ? pKey->GetRecord() : STRING_NOTFOUND; in Find()
147 ONDXKey* pKey = NULL; in GetCompare() local
171 while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand)) ; in GetCompare()
174 while ( ( ( pKey = GetNextKey() ) != NULL ) && pKey->getValue().isNull()) ; in GetCompare()
177 while ( ( pKey = GetNextKey() ) != NULL ) ; in GetCompare()
181 pKey = GetFirstKey(m_aRoot,*m_pOperand); in GetCompare()
184 pKey = GetFirstKey(m_aRoot,*m_pOperand); in GetCompare()
185 if ( !pKey ) in GetCompare()
186 … while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand)) ; in GetCompare()
194 while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand)) in GetCompare()
200 if ( ( ( pKey = GetNextKey() ) == NULL ) || !m_pOperator->operate(pKey,m_pOperand)) in GetCompare()
202 pKey = NULL; in GetCompare()
208 pKey = GetNextKey(); in GetCompare()
212 return pKey ? pKey->GetRecord() : STRING_NOTFOUND; in GetCompare()
230 ONDXKey* pKey; in GetLike() local
231 while ( ( ( pKey = GetNextKey() ) != NULL ) && !m_pOperator->operate(pKey,m_pOperand)) in GetLike()
233 return pKey ? pKey->GetRecord() : STRING_NOTFOUND; in GetLike()
250 ONDXKey* pKey; in GetNull() local
251 if ( ( ( pKey = GetNextKey() ) == NULL ) || !pKey->getValue().isNull()) in GetNull()
253 pKey = NULL; in GetNull()
256 return pKey ? pKey->GetRecord() : STRING_NOTFOUND; in GetNull()
262 ONDXKey* pKey; in GetNotNull() local
271 pKey = m_aCurLeaf.Is() ? &(*m_aCurLeaf)[m_nCurNode].GetKey() : NULL; in GetNotNull()
274 pKey = GetNextKey(); in GetNotNull()
276 return pKey ? pKey->GetRecord() : STRING_NOTFOUND; in GetNotNull()