Lines Matching refs:pConstraint
2225 const struct sqlite3_index_constraint *pConstraint; in spellfix1BestIndex() local
2226 pConstraint = pIdxInfo->aConstraint; in spellfix1BestIndex()
2227 for(i=0; i<pIdxInfo->nConstraint; i++, pConstraint++){ in spellfix1BestIndex()
2228 if( pConstraint->usable==0 ) continue; in spellfix1BestIndex()
2232 && pConstraint->iColumn==SPELLFIX_COL_WORD in spellfix1BestIndex()
2233 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_MATCH in spellfix1BestIndex()
2242 && pConstraint->iColumn==SPELLFIX_COL_LANGID in spellfix1BestIndex()
2243 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_EQ in spellfix1BestIndex()
2251 && pConstraint->iColumn==SPELLFIX_COL_TOP in spellfix1BestIndex()
2252 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_EQ in spellfix1BestIndex()
2260 && pConstraint->iColumn==SPELLFIX_COL_SCOPE in spellfix1BestIndex()
2261 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_EQ in spellfix1BestIndex()
2269 && pConstraint->iColumn==SPELLFIX_COL_DISTANCE in spellfix1BestIndex()
2270 && (pConstraint->op==SQLITE_INDEX_CONSTRAINT_LT in spellfix1BestIndex()
2271 || pConstraint->op==SQLITE_INDEX_CONSTRAINT_LE) in spellfix1BestIndex()
2273 if( pConstraint->op==SQLITE_INDEX_CONSTRAINT_LT ){ in spellfix1BestIndex()
2283 && pConstraint->iColumn<0 in spellfix1BestIndex()
2284 && pConstraint->op==SQLITE_INDEX_CONSTRAINT_EQ in spellfix1BestIndex()