Home | History | Annotate | Download | only in dist

Lines Matching refs:idxNum

5511   int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5572 ** ^The idxNum and idxPtr values are recorded and passed into the
5605 int idxNum; /* Number used to identify the index */
104349 sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum);
104961 pIdxInfo->idxNum = 0;
106347 pVtabIdx->idxNum, pVtabIdx->idxStr);
106449 sqlite3VdbeAddOp2(v, OP_Integer, pVtabIdx->idxNum, iReg);
118074 pInfo->idxNum = FTS3_FULLSCAN_SEARCH;
118085 pInfo->idxNum = FTS3_DOCID_SEARCH;
118102 pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn;
119577 ** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against
119580 ** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry
119583 ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The
119585 ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand
119590 int idxNum, /* Strategy index */
119603 assert( idxNum>=0 && idxNum<=(FTS3_FULLTEXT_SEARCH+p->nColumn) );
119605 assert( (nVal==0)==(idxNum==FTS3_FULLSCAN_SEARCH) );
119619 pCsr->eSearch = (i16)idxNum;
119621 if( idxNum!=FTS3_DOCID_SEARCH && idxNum!=FTS3_FULLSCAN_SEARCH ){
119622 int iCol = idxNum-FTS3_FULLTEXT_SEARCH;
119659 if( idxNum==FTS3_FULLSCAN_SEARCH ){
119670 }else if( idxNum==FTS3_DOCID_SEARCH ){
122022 pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT;
122026 pInfo->idxNum = 0;
122029 pInfo->idxNum += FTS4AUX_GE_CONSTRAINT;
122034 pInfo->idxNum += FTS4AUX_LE_CONSTRAINT;
122190 int idxNum, /* Strategy index */
122204 assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0
122205 || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT
122206 || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT)
122208 isScan = (idxNum!=FTS4AUX_EQ_CONSTRAINT);
122220 if( idxNum&(FTS4AUX_EQ_CONSTRAINT|FTS4AUX_GE_CONSTRAINT) ){
122228 if( idxNum&FTS4AUX_LE_CONSTRAINT ){
122229 int iIdx = (idxNum&FTS4AUX_GE_CONSTRAINT) ? 1 : 0;
130373 int iStrategy; /* Copy of idxNum search parameter */
131394 int idxNum, const char *idxStr,
131407 pCsr->iStrategy = idxNum;
131409 if( idxNum==1 ){
131485 ** idxNum idxStr Strategy
131534 pIdxInfo->idxNum = 1;
131567 pIdxInfo->idxNum = 2;