Home | History | Annotate | Download | only in orig

Lines Matching defs:idxNum

5432   int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5493 ** ^The idxNum and idxPtr values are recorded and passed into the
5538 int idxNum; /* Number used to identify the index */
110572 int idxNum; /* Index number */
112428 sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum);
113759 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
113868 sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg);
114693 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
114695 z = sqlite3_mprintf("(%d,%x)", p->u.vtab.idxNum, p->u.vtab.omitMask);
115769 pIdxInfo->idxNum = 0;
115825 pNew->u.vtab.idxNum = pIdxInfo->idxNum;
126861 ** The lower 16-bits of the sqlite3_index_info.idxNum value set by
128342 pInfo->idxNum = FTS3_FULLSCAN_SEARCH;
128354 pInfo->idxNum = FTS3_FULLSCAN_SEARCH;
128366 pInfo->idxNum = FTS3_DOCID_SEARCH;
128383 pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn;
128416 pInfo->idxNum |= FTS3_HAVE_LANGID;
128420 pInfo->idxNum |= FTS3_HAVE_DOCID_GE;
128424 pInfo->idxNum |= FTS3_HAVE_DOCID_LE;
129904 ** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against
129907 ** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry
129910 ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The
129912 ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand
129917 int idxNum, /* Strategy index */
129937 eSearch = (idxNum & 0x0000FFFF);
129944 if( idxNum & FTS3_HAVE_LANGID ) pLangid = apVal[iIdx++];
129945 if( idxNum & FTS3_HAVE_DOCID_GE ) pDocidGe = apVal[iIdx++];
129946 if( idxNum & FTS3_HAVE_DOCID_LE ) pDocidLe = apVal[iIdx++];
132825 pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT;
132829 pInfo->idxNum = 0;
132832 pInfo->idxNum += FTS4AUX_GE_CONSTRAINT;
132837 pInfo->idxNum += FTS4AUX_LE_CONSTRAINT;
132997 int idxNum, /* Strategy index */
133018 assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0
133019 || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT
133020 || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT)
133023 if( idxNum==FTS4AUX_EQ_CONSTRAINT ){
133027 if( idxNum & FTS4AUX_GE_CONSTRAINT ){
133030 if( idxNum & FTS4AUX_LE_CONSTRAINT ){
136488 pInfo->idxNum = 1;
136496 pInfo->idxNum = 0;
136577 int idxNum, /* Strategy index */
136589 if( idxNum==1 ){
144871 int iStrategy; /* Copy of idxNum search parameter */
146169 int idxNum, const char *idxStr,
146187 pCsr->iStrategy = idxNum;
146188 if( idxNum==1 ){
146286 ** idxNum idxStr Strategy
146336 pIdxInfo->idxNum = 1;
146371 pIdxInfo->idxNum = 2;